.portal-career-explore-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px 56px;
}

.portal-career-explore-breadcrumb {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

.portal-career-explore-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.portal-career-explore-breadcrumb a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.portal-career-explore-breadcrumb span {
    margin: 0 8px;
}

.portal-career-explore-breadcrumb__separator {
    color: #cbd5e1;
}

.portal-career-explore-breadcrumb__current {
    color: #334155;
}

.banner {
    background: linear-gradient(135deg, #e0efff 0%, #c7ddff 30%, #b8d4f0 60%, #d6ecff 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
    backdrop-filter: blur(4px);
}

.banner-tag svg {
    width: 14px;
    height: 14px;
}

.banner-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0 0 12px;
    line-height: 1.4;
}

.banner-desc {
    font-size: 14px;
    color: #3b5998;
    line-height: 1.8;
    max-width: 380px;
}

.banner-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.banner-decor.sparkle-1 {
    top: 18px;
    left: 30%;
    animation: floatSparkle 3s ease-in-out infinite;
}

.banner-decor.sparkle-2 {
    bottom: 24px;
    left: 15%;
    animation: floatSparkle 4s ease-in-out infinite 0.5s;
}

.banner-decor.sparkle-3 {
    top: 40px;
    right: 45%;
    animation: floatSparkle 3.5s ease-in-out infinite 1s;
}

.banner-decor.cloud-1 {
    top: 12px;
    left: 8%;
    opacity: 0.3;
    animation: floatCloud 6s ease-in-out infinite;
}

.banner-decor.cloud-2 {
    bottom: 16px;
    left: 40%;
    opacity: 0.25;
    animation: floatCloud 7s ease-in-out infinite 2s;
}

.banner-decor.dot-cluster {
    top: 50%;
    left: 52%;
    transform: translateY(-50%);
    opacity: 0.15;
}

@keyframes floatSparkle {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-6px) scale(1.15);
        opacity: 1;
    }
}

@keyframes floatCloud {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

.banner-illustration {
    flex-shrink: 0;
    width: 320px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.banner-illustration::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, #d0e4f9 0%, transparent 100%);
    z-index: 2;
}

.banner-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 32px 48px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="20" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.promo-badge {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.portal-career-explore-filter {
    margin-bottom: 26px;
    padding: 22px 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 49, 92, 0.06);
}

.portal-career-explore-filter__title {
    margin: 0 0 18px;
    color: #16315c;
    font-size: 20px;
    line-height: 1.4;
}

.portal-career-explore-search {
    display: flex;
    gap: 12px;
    /* max-width: 540px; */
    margin-bottom: 20px;
}

.portal-career-explore-search__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d7e1ef;
    border-radius: 8px;
    color: #243b5c;
    outline: none;
}

.portal-career-explore-search__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.portal-career-explore-search__button {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: #1e40af;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.portal-career-explore-search__button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.portal-career-explore-filter__label {
    margin-bottom: 12px;
    color: #52647f;
    font-size: 14px;
    font-weight: 700;
}

.portal-career-explore-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.portal-career-explore-filter__tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f3f6fb;
    color: #274066;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.portal-career-explore-filter__tag:hover {
    background: #e6f0ff;
    color: #1e40af;
    transform: translateY(-2px);
}

.portal-career-explore-filter__tag.is-active {
    background: #1e40af;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(30, 64, 175, 0.2);
}

.portal-career-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.portal-career-explore-card {
    display: flex;
    gap: 16px;
    min-width: 0;
    min-height: 134px;
    padding: 16px;
    border-radius: 12px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(22, 49, 92, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.portal-career-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(22, 49, 92, 0.13);
}

.portal-career-explore-card__cover {
    position: relative;
    flex: 0 0 128px;
    width: 128px;
    height: 96px;
    overflow: hidden;
    border-radius: 10px;
    background: #e8edf5;
}

.portal-career-explore-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.portal-career-explore-card:hover .portal-career-explore-card__cover img {
    transform: scale(1.04);
}

.portal-career-explore-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.portal-career-explore-card__category {
    position: absolute;
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(30, 64, 175, 0.92);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal-career-explore-card__body {
    min-width: 0;
    flex: 1 1 auto;
}

.portal-career-explore-card__title {
    display: block;
    margin: 2px 0 8px;
    overflow: hidden;
    color: #1d3354;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal-career-explore-card__summary {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.portal-career-explore-empty {
    grid-column: 1 / -1;
    padding: 48px 20px;
    border-radius: 16px;
    background: #ffffff;
    color: #7b8ca5;
    text-align: center;
}

.portal-career-explore-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 48px 0;
    padding: 24px 0;
    flex-wrap: wrap;
}

.portal-career-explore-pagination__pages {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.portal-career-explore-pagination__btn,
.portal-career-explore-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    user-select: none;
    transition: all 0.2s ease;
}

.portal-career-explore-pagination__btn:not(.is-disabled):hover,
.portal-career-explore-pagination__page:not(.is-active):hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
}

.portal-career-explore-pagination__page.is-active {
    border-color: #1e40af;
    background: #1e40af;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.portal-career-explore-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 40px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}

.portal-career-explore-pagination__btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.portal-career-explore-pagination__summary {
    margin: 0 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .portal-career-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .banner {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
    }

    .banner-content {
        padding: 24px 20px 16px;
    }

    .banner-illustration {
        position: relative;
        width: 100%;
        height: 180px;
    }

    .banner-illustration::before {
        display: none;
    }

    .banner-title {
        font-size: 18px;
    }

    .banner-desc {
        font-size: 13px;
    }

    .banner-decor.cloud-1,
    .banner-decor.cloud-2,
    .banner-decor.dot-cluster {
        display: none;
    }

    .portal-career-explore-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .portal-career-explore-main {
        padding: 24px 16px 40px;
    }

    .promo-banner {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .promo-title {
        font-size: 20px;
    }

    .portal-career-explore-search {
        max-width: none;
    }

    .portal-career-explore-card {
        flex-direction: column;
    }

    .portal-career-explore-card__cover {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        flex-basis: auto;
    }
}
