/* HIRE EV Jobs Plugin Styles */

/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@600;700&display=swap');

:root {
    --hire-ev-navy: #0A1F44;
    --hire-ev-red: #DC143C;
    --hire-ev-gold: #F4B942;
    --hire-ev-light-bg: #F8F9FB;
    --hire-ev-white: #FFFFFF;
    --hire-ev-text-primary: #1A2332;
    --hire-ev-text-secondary: #5A6C7D;
    --hire-ev-text-muted: #8B96A5;
    --hire-ev-border: #E5E8ED;
    --hire-ev-shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
    --hire-ev-shadow-md: 0 4px 16px rgba(10, 31, 68, 0.08);
    --hire-ev-shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.12);
    --hire-ev-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-ev-jobs-container {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--hire-ev-text-primary);
}

/* Search Section */
.hire-ev-search-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hire-ev-search-bar {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.hire-ev-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hire-ev-text-muted);
    pointer-events: none;
}

.hire-ev-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    border: 2px solid var(--hire-ev-border);
    border-radius: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--hire-ev-text-primary);
    background: var(--hire-ev-white);
    transition: var(--hire-ev-transition);
    outline: none;
}

.hire-ev-search-input:focus {
    border-color: var(--hire-ev-navy);
    box-shadow: 0 0 0 4px rgba(10, 31, 68, 0.08);
}

.hire-ev-search-input::placeholder {
    color: var(--hire-ev-text-muted);
}

.hire-ev-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--hire-ev-white);
    border: 2px solid var(--hire-ev-border);
    border-radius: 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--hire-ev-text-primary);
    cursor: pointer;
    transition: var(--hire-ev-transition);
    white-space: nowrap;
}

.hire-ev-filter-toggle:hover {
    border-color: var(--hire-ev-navy);
    background: var(--hire-ev-light-bg);
}

.hire-ev-filter-toggle svg {
    color: var(--hire-ev-navy);
}

/* Filter Panel */
.hire-ev-filter-panel {
    background: var(--hire-ev-white);
    border: 2px solid var(--hire-ev-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-ev-filter-panel.active {
    max-height: 600px;
    opacity: 1;
    margin-bottom: 2rem;
}

.hire-ev-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hire-ev-filter-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hire-ev-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hire-ev-filter-select,
.hire-ev-filter-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--hire-ev-border);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--hire-ev-text-primary);
    background: var(--hire-ev-white);
    transition: var(--hire-ev-transition);
    outline: none;
}

.hire-ev-filter-select:focus,
.hire-ev-filter-input:focus {
    border-color: var(--hire-ev-navy);
    box-shadow: 0 0 0 4px rgba(10, 31, 68, 0.06);
}

.hire-ev-filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 2px solid var(--hire-ev-border);
}

/* Buttons */
.hire-ev-btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hire-ev-transition);
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
}

.hire-ev-btn-primary {
    background: var(--hire-ev-navy);
    color: var(--hire-ev-white);
    box-shadow: var(--hire-ev-shadow-sm);
}

.hire-ev-btn-primary:hover {
    background: #0D2A5C;
    box-shadow: var(--hire-ev-shadow-md);
    transform: translateY(-1px);
}

.hire-ev-btn-secondary {
    background: var(--hire-ev-light-bg);
    color: var(--hire-ev-text-primary);
    border: 2px solid var(--hire-ev-border);
}

.hire-ev-btn-secondary:hover {
    background: var(--hire-ev-white);
    border-color: var(--hire-ev-navy);
}

.hire-ev-btn-outline {
    background: transparent;
    color: var(--hire-ev-navy);
    border: 2px solid var(--hire-ev-navy);
}

.hire-ev-btn-outline:hover {
    background: var(--hire-ev-navy);
    color: var(--hire-ev-white);
}

/* Results Info */
.hire-ev-results-info {
    margin-bottom: 1.5rem;
}

.hire-ev-results-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hire-ev-text-secondary);
    margin: 0;
}

/* Job Cards Grid */
.hire-ev-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hire-ev-job-card {
    background: var(--hire-ev-white);
    border: 2px solid var(--hire-ev-border);
    border-radius: 20px;
    padding: 1.75rem;
    cursor: pointer;
    transition: var(--hire-ev-transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hire-ev-job-card:nth-child(1) { animation-delay: 0.05s; }
.hire-ev-job-card:nth-child(2) { animation-delay: 0.1s; }
.hire-ev-job-card:nth-child(3) { animation-delay: 0.15s; }
.hire-ev-job-card:nth-child(4) { animation-delay: 0.2s; }
.hire-ev-job-card:nth-child(5) { animation-delay: 0.25s; }
.hire-ev-job-card:nth-child(6) { animation-delay: 0.3s; }

.hire-ev-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--hire-ev-red), var(--hire-ev-gold));
    transition: height 0.3s ease;
}

.hire-ev-job-card:hover {
    border-color: var(--hire-ev-navy);
    box-shadow: var(--hire-ev-shadow-lg);
    transform: translateY(-4px);
}

.hire-ev-job-card:hover::before {
    height: 100%;
}

.hire-ev-job-header {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hire-ev-company-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--hire-ev-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hire-ev-border);
}

.hire-ev-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.hire-ev-job-header-content {
    flex: 1;
    min-width: 0;
}

.hire-ev-job-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.hire-ev-company-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hire-ev-text-secondary);
    margin: 0;
}

.hire-ev-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hire-ev-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--hire-ev-text-secondary);
    background: var(--hire-ev-light-bg);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
}

.hire-ev-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.hire-ev-job-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--hire-ev-text-secondary);
    margin: 0 0 1.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hire-ev-job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid var(--hire-ev-light-bg);
}

.hire-ev-salary {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    font-family: 'Fraunces', serif;
}

.hire-ev-source {
    font-size: 0.75rem;
    color: var(--hire-ev-text-muted);
    font-weight: 500;
}

.hire-ev-employment-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(10, 31, 68, 0.08);
    color: var(--hire-ev-navy);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Loading States */
.hire-ev-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.hire-ev-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--hire-ev-light-bg);
    border-top-color: var(--hire-ev-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hire-ev-loading p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--hire-ev-text-secondary);
    margin: 0;
}

/* Empty State */
.hire-ev-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.hire-ev-empty-state svg {
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.hire-ev-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hire-ev-text-primary);
    margin: 0 0 0.5rem 0;
}

.hire-ev-empty-state p {
    font-size: 0.9375rem;
    color: var(--hire-ev-text-secondary);
    margin: 0;
}

/* Load More */
.hire-ev-load-more-container {
    text-align: center;
    margin: 2rem 0;
}

/* Modal */
.hire-ev-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hire-ev-modal.active {
    display: flex;
}

.hire-ev-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hire-ev-modal-content {
    position: relative;
    background: var(--hire-ev-white);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--hire-ev-shadow-lg);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    padding: 24px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hire-ev-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid var(--hire-ev-border);
    background: var(--hire-ev-white);
    color: var(--hire-ev-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hire-ev-transition);
    z-index: 2;
}

.hire-ev-modal-close:hover {
    background: var(--hire-ev-light-bg);
    border-color: var(--hire-ev-navy);
}

.hire-ev-modal-body {
    padding: 3rem 2.5rem 2.5rem 2.5rem;
}

.hire-ev-modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--hire-ev-light-bg);
}

.hire-ev-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    font-family: 'Fraunces', serif;
    padding-right: 3rem;
}

.hire-ev-modal-company {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hire-ev-text-secondary);
    margin: 0 0 1rem 0;
}

.hire-ev-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hire-ev-modal-section {
    margin-bottom: 2rem;
}

.hire-ev-modal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}

.hire-ev-modal-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--hire-ev-text-secondary);
    margin: 0 0 1rem 0;
}

.hire-ev-modal-section ul {
    margin: 0;
    padding-left: 1.25rem;
}

.hire-ev-modal-section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--hire-ev-text-secondary);
    margin-bottom: 0.5rem;
}

.hire-ev-modal-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--hire-ev-light-bg);
}

.hire-ev-modal-actions > * {
    flex: 1;
}

.hire-ev-apply-btn {
    flex: 1;
    padding: 1.125rem 2rem;
    background: var(--hire-ev-red);
    color: var(--hire-ev-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--hire-ev-transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.hire-ev-apply-btn:hover {
    background: #B51030;
    box-shadow: var(--hire-ev-shadow-md);
    transform: translateY(-2px);
}

.hire-ev-peso-btn {
    flex: 1;
    padding: 1.125rem 2rem;
    background: var(--hire-ev-white);
    color: var(--hire-ev-navy);
    border: 2px solid var(--hire-ev-navy);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--hire-ev-transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.hire-ev-peso-btn:hover {
    background: var(--hire-ev-navy);
    color: var(--hire-ev-white);
    box-shadow: var(--hire-ev-shadow-md);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hire-ev-jobs-container {
        padding: 1.5rem 1rem;
    }
    
    .hire-ev-search-section {
        flex-direction: column;
    }
    
    .hire-ev-filter-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .hire-ev-jobs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hire-ev-filter-panel {
        padding: 1.5rem;
    }
    
    .hire-ev-filter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hire-ev-filter-actions {
        flex-direction: column;
    }
    
    .hire-ev-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .hire-ev-modal-title {
        font-size: 1.5rem;
    }
    
    .hire-ev-modal-actions {
        flex-direction: column;
    }
    
    .hire-ev-modal-actions > * {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hire-ev-modal-content {
        border-radius: 20px;
        margin: 1rem;
    }
    
    .hire-ev-job-card {
        padding: 1.5rem;
    }
}

/* ============================================
   CAROUSEL STYLES
   ============================================ */

.hire-ev-carousel-container {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
}

.hire-ev-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.hire-ev-carousel-title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    margin: 0;
}

.hire-ev-carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.hire-ev-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--hire-ev-border);
    background: var(--hire-ev-white);
    color: var(--hire-ev-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hire-ev-transition);
}

.hire-ev-carousel-btn:hover:not(:disabled) {
    background: var(--hire-ev-navy);
    color: var(--hire-ev-white);
    border-color: var(--hire-ev-navy);
    box-shadow: var(--hire-ev-shadow-md);
}

.hire-ev-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.hire-ev-carousel-wrapper {
    overflow: hidden;
    margin: 0 -0.75rem;
    padding: 0.5rem 0;
}

.hire-ev-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 20%;
    gap: 0;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-ev-carousel-card {
    background: var(--hire-ev-white);
    border: 2px solid var(--hire-ev-border);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--hire-ev-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0.625rem; 
}

.hire-ev-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--hire-ev-red), var(--hire-ev-gold));
    transition: height 0.3s ease;
}

.hire-ev-carousel-card:hover {
    border-color: var(--hire-ev-navy);
    box-shadow: var(--hire-ev-shadow-lg);
    transform: translateY(-4px);
}

.hire-ev-carousel-card:hover::before {
    height: 100%;
}

.hire-ev-carousel-card-header {
    margin-bottom: 1rem;
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.hire-ev-carousel-company-logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--hire-ev-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hire-ev-border);
}

.hire-ev-carousel-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.hire-ev-carousel-header-content {
    flex: 1;
    min-width: 0;
}

.hire-ev-carousel-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    margin: 0 0 0.375rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hire-ev-carousel-card-company {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hire-ev-text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hire-ev-carousel-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hire-ev-carousel-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--hire-ev-text-secondary);
}

.hire-ev-carousel-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    flex-shrink: 0;
}

.hire-ev-carousel-card-footer {
    padding-top: 1rem;
    border-top: 2px solid var(--hire-ev-light-bg);
    margin-top: auto;
    flex-shrink: 0;
}

.hire-ev-carousel-salary {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--hire-ev-navy);
    font-family: 'Fraunces', serif;
    margin-bottom: 0.375rem;
}

.hire-ev-carousel-source {
    font-size: 0.6875rem;
    color: var(--hire-ev-text-muted);
    font-weight: 500;
}

.hire-ev-carousel-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.hire-ev-carousel-loading p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--hire-ev-text-secondary);
    margin: 0;
}

.hire-ev-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.hire-ev-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hire-ev-border);
    cursor: pointer;
    transition: var(--hire-ev-transition);
}

.hire-ev-carousel-indicator.active {
    background: var(--hire-ev-navy);
    width: 24px;
    border-radius: 4px;
}

.hire-ev-carousel-indicator:hover {
    background: var(--hire-ev-text-muted);
}

/* Responsive Carousel Styles */
@media (max-width: 1400px) {
    .hire-ev-carousel-track {
        grid-auto-columns: calc(25% - 1rem);
    }
}

@media (max-width: 1024px) {
    .hire-ev-carousel-track {
        grid-auto-columns: calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .hire-ev-carousel-container {
        padding: 2rem 1rem;
    }
    
    .hire-ev-carousel-title {
        font-size: 1.5rem;
    }
    
    .hire-ev-carousel-track {
        grid-auto-columns: calc(50% - 0.75rem);
    }
    
    .hire-ev-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hire-ev-carousel-controls {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .hire-ev-carousel-track {
        grid-auto-columns: 100%;
        gap: 0;
    }
    
    .hire-ev-carousel-card {
        padding: 1.25rem;
        margin: 0 0.5rem; 
    }
    
    .hire-ev-carousel-btn {
        width: 40px;
        height: 40px;
    }
    .hire-ev-carousel-wrapper {
    padding: 0.5rem 0.5rem;   /* Edge padding */
}
}
