/* ============================================================
   PUBLIC HIRING PAGES STYLES
   ============================================================ */

/* Base Styles */
.public-body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--background, #f5f7fb);
    color: var(--text-primary, #0f172a);
    line-height: 1.6;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Navigation */
.public-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-tertiary, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary, #334155);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color, #4f46e5);
}

/* Mobile Menu Toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary, #334155);
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
.public-main {
    min-height: calc(100vh - 200px);
}

/* Hero Section - Compact */
.hero-section {
    background: radial-gradient(circle at top, rgba(79, 70, 229, 0.55), rgba(15, 23, 42, 0.95)), #0f172a;
    color: white;
    padding: 1.25rem 1.5rem 1rem;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-title {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: white;
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.hero-tag {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

/* removed panel */

/* Search Section - Compact */
.search-section {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
}

.search-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-box {
    position: relative;
    margin-bottom: 0.5rem;
}

.search-box i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.search-box input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color, #4f46e5);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.filter-hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-tertiary, #64748b);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.85rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Jobs Section - Compact */
.jobs-section {
    padding: 1.5rem 1.5rem;
}

.jobs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.jobs-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin: 0 0 0.1rem;
}

.jobs-header h2 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin: 0;
}

.jobs-count {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.jobs-list {
    display: grid;
    gap: 1rem;
}

.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.2s ease;
    display: block;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
    border-color: rgba(79, 70, 229, 0.45);
}

.job-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.job-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    margin-bottom: 0.4rem;
}

.job-title {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.job-blurb {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.975rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.job-meta i {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-right: 0.45rem;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.job-cta {
    font-weight: 600;
    color: var(--primary-color, #4f46e5);
}

.job-arrow {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.job-card:hover .job-arrow {
    transform: translate(4px, -4px);
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-panel {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .search-section,
    .jobs-section,
    .subscription-section,
    .breadcrumb-section,
    .job-header-section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-tertiary);
}

.empty-state i {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    max-width: 500px;
    margin: 0 auto;
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 2rem;
}

.subscription-container {
    max-width: 800px;
    margin: 0 auto;
}

.subscription-content {
    text-align: center;
}

.subscription-text h2 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin: 0 0 0.75rem 0;
}

.subscription-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscription-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscription-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.subscribe-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.subscribe-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.subscription-message {
    margin-top: 1rem;
    font-size: 0.9375rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.subscription-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.subscription-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

@media (max-width: 768px) {
    .subscription-form {
        flex-direction: column;
    }
    .subscribe-button {
        width: 100%;
    }
}

/* Footer */
.public-footer {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    margin: 0 0 1rem 0;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Job Detail Page */
.breadcrumb-section {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 2rem;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.job-header-section {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: white;
    padding: 3rem 2rem;
}

.job-header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-page-title {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.job-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.job-content-section {
    padding: 3rem 2rem;
}

.job-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.job-details-column {
    min-width: 0;
}

.job-section {
    margin-bottom: 1.5rem;
}

.job-section h2 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin: 0 0 0.75rem 0;
}

.job-description-content,
.job-requirements-content {
    line-height: 1.5;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Style paragraphs and sections within job content */
.job-description-content p,
.job-requirements-content p {
    margin-bottom: 1rem;
}

.job-description-content p:last-child,
.job-requirements-content p:last-child {
    margin-bottom: 0;
}

/* Style bold text and headings within content */
.job-description-content strong,
.job-requirements-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Style lists */
.job-description-content ul,
.job-description-content ol,
.job-requirements-content ul,
.job-requirements-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.job-description-content li,
.job-requirements-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Style all headings within content consistently */
.job-description-content h1,
.job-description-content h2,
.job-requirements-content h1,
.job-requirements-content h2 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.25rem 0 0.5rem 0;
}

.job-description-content h3,
.job-requirements-content h3 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.125rem 0 0.5rem 0;
}

.job-description-content h1:first-child,
.job-description-content h2:first-child,
.job-description-content h3:first-child,
.job-requirements-content h1:first-child,
.job-requirements-content h2:first-child,
.job-requirements-content h3:first-child {
    margin-top: 0;
}

.job-description-content h4,
.job-requirements-content h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin: 1rem 0 0.4rem 0;
}

/* Application Column */
.application-column {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.application-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.application-title {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.application-description {
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.required {
    color: var(--danger-color, #dc2626);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #4f46e5);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-helper {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #f8fafc;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: #f1f5f9;
}

.file-upload-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.error-message {
    padding: 1.5rem;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.error-message i {
    font-size: 1.5rem;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover:not(:disabled) {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Tips Card */
.tips-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
}

.tips-card h3 {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
}

.tips-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tips-card li:last-child {
    margin-bottom: 0;
}

.tips-card i {
    color: var(--success-color, #16a34a);
    margin-top: 0.125rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .job-content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .application-column {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Hamburger menu */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding-top: 1rem;
    }

    .nav-links .nav-link {
        padding: 0.75rem 0;
        border-top: 1px solid #e2e8f0;
    }

    .nav-open .nav-links {
        display: flex;
    }

    .nav-container {
        padding: 1rem;
        flex-wrap: wrap;
    }

    /* Hero */
    .hero-section {
        padding: 1rem 1rem 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    /* Job header */
    .job-page-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .job-header-section {
        padding: 2rem 1.25rem;
    }

    .job-badge-large {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    /* Filter controls */
    .filter-controls {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .public-footer {
        padding: 2rem 1.25rem 1.25rem;
    }

    /* Subscription */
    .subscription-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    /* Job cards */
    .job-card {
        padding: 1.125rem;
    }

    .job-title {
        font-size: 1.125rem;
    }

    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Subscription */
    .subscription-section {
        padding: 2.5rem 1.25rem;
    }

    /* Job content */
    .job-content-section {
        padding: 2rem 1rem;
    }

    /* Footer grid fix */
    .footer-content {
        grid-template-columns: minmax(200px, 1fr);
    }
}

/* ================================
   Open Application Section
   ================================ */
.open-application-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.open-application-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.open-application-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.open-application-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.open-application-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4f46e5;
    flex-shrink: 0;
}

.open-application-content h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
}

.open-application-content p {
    margin: 0 0 1rem 0;
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.5;
}

.open-application-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4f46e5;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.open-application-cta:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.open-application-cta i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.open-application-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .open-application-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .open-application-content h3 {
        font-size: 1.125rem;
    }

    .open-application-content p {
        font-size: 0.9rem;
    }
}
