/* ==========================================================
   PREMIUM-ONLY PAGE
========================================================== */

.premium-only-page {
    padding-top: 48px;
    padding-bottom: 60px;
}

.premium-only-card {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(28, 45, 72, 0.09);
}


/* ==========================================================
   FILE HEADER
========================================================== */

.premium-only-file-header {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 124px;
    padding: 24px 28px;
    background: linear-gradient( 105deg, #e0f5f5 0%, #f7f3e8 100%);
    border-bottom: 1px solid #e2e8f0;
}

.premium-only-file-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: #0097c7;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
}

.premium-only-file-content {
    min-width: 0;
}

.premium-only-label {
    margin-bottom: 5px;
    color: #008e91;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.premium-only-file-name {
    margin: 0 0 7px;
    overflow: hidden;
    color: #12213a;
    font-size: 27px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.premium-only-file-size {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #58708f;
    font-size: 14px;
    font-weight: 650;
}


/* ==========================================================
   BODY
========================================================== */

.premium-only-body {
    padding: 34px 44px 36px;
    text-align: center;
}

.premium-only-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    color: #f5a623;
    background: #fff3d9;
    border-radius: 12px;
}

.premium-only-title {
    margin: 0;
    color: #a32112;
    font-size: 24px;
    font-weight: 750;
    line-height: 1.35;
}

.premium-only-description {
    max-width: 650px;
    margin: 12px auto 0;
    color: #68768b;
    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   BENEFITS
========================================================== */

.premium-only-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
    margin: 26px auto 0;
}

.premium-only-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 14px;
    color: #27364f;
    background: #fafcff;
    border: 1px solid #dce6f1;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 650;
    text-align: left;
}

.premium-only-benefit-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #253b5d;
    background: #ffffff;
    border: 1px solid #dae4ef;
    border-radius: 8px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.premium-only-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 310px;
    min-height: 50px;
    margin-top: 26px;
    padding: 12px 24px;
    color: #ffffff;
    background: linear-gradient( 180deg, #ffb324 0%, #f29a08 100%);
    border: 1px solid #e28c00;
    border-radius: 9px;
    box-shadow: 0 12px 28px rgba(242, 154, 8, 0.28);
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.premium-only-button:hover {
    color: #ffffff;
    filter: brightness(1.03);
    box-shadow: 0 15px 32px rgba(242, 154, 8, 0.34);
    transform: translateY(-2px);
}

.premium-only-button:active {
    transform: translateY(0);
}

.premium-only-register {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 13px auto 0;
    color: #008fc1;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.premium-only-register:hover {
    color: #006e96;
    text-decoration: underline;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 767.98px) {
    .premium-only-page {
        padding-top: 24px;
        padding-bottom: 34px;
    }
    .premium-only-file-header {
        min-height: auto;
        padding: 20px;
    }
    .premium-only-file-name {
        font-size: 21px;
    }
    .premium-only-body {
        padding: 28px 20px 30px;
    }
    .premium-only-title {
        font-size: 21px;
    }
    .premium-only-benefits {
        grid-template-columns: 1fr;
        max-width: 430px;
    }
    .premium-only-benefit {
        justify-content: flex-start;
    }
    .premium-only-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 479.98px) {
    .premium-only-file-header {
        align-items: flex-start;
    }
    .premium-only-file-icon {
        width: 46px;
        height: 48px;
    }
    .premium-only-file-icon svg {
        width: 23px;
        height: 27px;
    }
    .premium-only-file-name {
        font-size: 18px;
    }
    .premium-only-lock {
        width: 58px;
        height: 58px;
    }
    .premium-only-title {
        font-size: 19px;
    }
}