.project-media-center-page {
    padding-bottom: 90px;
    background: linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
}

.project-media-center-hero {
    min-height: 300px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7, 28, 85, 0.9) 0%, rgba(7, 28, 85, 0.95) 52%, rgba(7, 28, 85, 1) 100%),
        url('/k.png') center/cover no-repeat;
}

.project-media-center-hero-inner {
    width: 100%;
    text-align: right;
    color: #fff;
    padding: 150px 0 80px 0;
}

.project-media-center-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.project-media-center-breadcrumb a {
    color: #fff;
}

.project-media-center-title {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
}

.project-media-center-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.project-media-center-shell {
    padding-top: 60px;
}

.diagnostic-container {
    background: #f8fafc;
    border-radius: 24px;
    padding: 48px 32px;
}

.diagnostic-card {
    background: #fff;
    border-radius: 32px;
    padding: 48px 40px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.diagnostic-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 141, 13, 0.06) 0%, transparent 100%);
    border-bottom-left-radius: 100%;
}

.diagnostic-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.diagnostic-card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(29, 52, 127, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -42px;
}

.diagnostic-card-text-wrapper {
    flex-grow: 1;
}

.diagnostic-card-icon {
    font-size: 36px;
    color: #d48d0d;
}

.diagnostic-card-number {
    font-size: 52px;
    font-weight: 900;
    color: #1d1551;
    margin-bottom: 8px;
}

.diagnostic-card-title {
    font-size: 22px;
    font-weight: 900;
    color: #071c55;
    margin-bottom: 16px;
}

.diagnostic-card-text {
    font-size: 16px;
    color: rgba(29, 21, 81, 0.7);
    line-height: 1.8;
}

.diagnostic-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.diagnostic-card-duration {
    font-size: 14px;
    color: rgba(29, 21, 81, 0.6);
}

.diagnostic-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 16px;
    background: #071c55;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.2s ease;
}

.diagnostic-card-btn:hover {
    background: #1d347f;
    color: #fff;
}

/* Large Desktops (up to 1399px */
@media (max-width: 1399px) {
    .diagnostic-card-title {
        font-size: 21px;
    }
}

/* Medium Desktops (up to 1199px) */
@media (max-width: 1199px) {
    .diagnostic-card {
        padding: 40px 32px;
    }
    .diagnostic-card-title {
        font-size: 19px;
    }
}

/* Tablets (up to 991px) */
@media (max-width: 991px) {
    .project-media-center-title {
        font-size: 34px;
    }

    .project-media-center-subtitle {
        font-size: 15px;
    }

    .diagnostic-container {
        padding: 36px 24px;
    }

    .diagnostic-card {
        padding: 36px 28px;
    }

    .diagnostic-card-title {
        font-size: 18px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .project-media-center-page {
        padding-bottom: 60px;
    }

    .project-media-center-hero {
        min-height: 250px;
    }

    .project-media-center-hero-inner {
        padding: 120px 0 60px 0;
    }

    .project-media-center-title {
        font-size: 28px;
    }

    .diagnostic-container {
        padding: 28px 16px;
    }

    .diagnostic-card {
        padding: 32px 24px;
    }

    .diagnostic-card-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 24px;
    }

    .diagnostic-card-icon-wrapper {
        margin-top: 0;
        margin-bottom: 16px;
    }

    .diagnostic-card-title {
        font-size: 18px;
    }

    .diagnostic-card-text {
        font-size: 14px;
    }

    .diagnostic-card-duration,
    .diagnostic-card-btn {
        font-size: 13px;
    }


    .diagnostic-card-meta {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .project-media-center-title {
        font-size: 26px;
    }
}
