/* ================================
   PROFILE INTRO
================================ */

.profile-intro-section {
    position: relative;
    width: 100%;
    padding: 95px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(215, 25, 63, 0.08),
            transparent 30%
        ),
        #07080b;
}


/* BACKGROUND GLOW */

.profile-intro-section::before {
    content: "";

    position: absolute;
    left: -180px;
    top: 20%;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.035);

    filter: blur(80px);

    pointer-events: none;
}


/* CONTAINER */

.profile-intro-container {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


/* ================================
   CONTENT
================================ */

.profile-intro-content {
    max-width: 650px;
}


.profile-intro-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.profile-intro-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* H1 */

.profile-intro-content h1 {
    margin: 0 0 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 56px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1px;

    color: #ffffff;
}


.profile-intro-content h1 span {
    color: #d7193f;
}


/* TEXT */

.profile-intro-content p {
    max-width: 620px;

    margin: 0 0 17px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.9;

    color: #9da1ad;
}


/* LINE */

.profile-intro-line {
    width: 65px;
    height: 2px;

    margin-top: 25px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* ================================
   INFO CARD
================================ */

.profile-intro-card {
    position: relative;

    min-height: 330px;

    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 23, 30, 0.96),
            rgba(9, 10, 14, 0.98)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.38);

    overflow: hidden;
}


/* TOP RED LINE */

.profile-intro-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 32px;

    width: 90px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* CARD GLOW */

.profile-intro-card-glow {
    position: absolute;

    right: -90px;
    top: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.07);

    filter: blur(55px);

    pointer-events: none;
}


/* TOP */

.profile-intro-card-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.profile-intro-card-top span {
    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #d7193f;
}


.profile-intro-card-top i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    border: 1px solid rgba(215, 25, 63, 0.22);

    background:
        rgba(215, 25, 63, 0.08);

    font-size: 15px;

    color: #d7193f;
}


/* MAIN */

.profile-intro-card-main {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    margin-top: 20px;
}


.profile-intro-card-main strong {
    font-family: Arial, sans-serif;

    font-size: 76px;
    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -5px;

    background:
        linear-gradient(
            135deg,
            #ffffff 10%,
            #d7193f 80%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.profile-intro-card-main span {
    margin-top: 10px;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #aeb1bb;
}


/* BOTTOM */

.profile-intro-card-bottom {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.profile-intro-card-bottom div {
    display: flex;

    flex-direction: column;

    gap: 6px;
}


.profile-intro-card-bottom small {
    font-family: Arial, sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #5f6370;
}


.profile-intro-card-bottom b {
    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .profile-intro-section {
        padding: 80px 20px;
    }

    .profile-intro-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .profile-intro-content {
        max-width: 720px;
    }

    .profile-intro-card {
        width: min(600px, 100%);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .profile-intro-section {
        padding: 70px 15px;
    }


    .profile-intro-container {
        gap: 40px;
    }


    .profile-intro-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }


    .profile-intro-label::before {
        width: 25px;
    }


    .profile-intro-content h1 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .profile-intro-content p {
        font-size: 11px;

        line-height: 1.8;
    }


    .profile-intro-line {
        margin-top: 22px;

        width: 55px;
    }


    .profile-intro-card {
        min-height: 290px;

        padding: 25px;

        border-radius: 20px;
    }


    .profile-intro-card::before {
        left: 25px;

        width: 70px;
    }


    .profile-intro-card-top span {
        font-size: 8px;

        letter-spacing: 2px;
    }


    .profile-intro-card-top i {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }


    .profile-intro-card-main strong {
        font-size: 64px;

        letter-spacing: -4px;
    }


    .profile-intro-card-main span {
        font-size: 11px;
    }


    .profile-intro-card-bottom {
        padding-top: 18px;
    }


    .profile-intro-card-bottom small {
        font-size: 7px;
    }


    .profile-intro-card-bottom b {
        font-size: 12px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .profile-intro-section {
        padding: 60px 12px;
    }


    .profile-intro-content h1 {
        font-size: 30px;
    }


    .profile-intro-card {
        min-height: 270px;

        padding: 22px;
    }


    .profile-intro-card-main strong {
        font-size: 58px;
    }

}

/* ================================
   EDITOR'S SELECTION
================================ */

.editor-section {
    position: relative;
    width: 100%;
    padding: 95px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(215, 25, 63, 0.07),
            transparent 30%
        ),
        #07080b;
}


/* BACKGROUND GLOW */

.editor-section::before {
    content: "";

    position: absolute;

    left: -170px;
    bottom: 5%;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.035);

    filter: blur(80px);

    pointer-events: none;
}


/* CONTAINER */

.editor-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.editor-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 48px;
}


.editor-heading-content {
    max-width: 650px;
}


.editor-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.editor-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


.editor-heading h2 {
    margin: 0 0 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #ffffff;
}


.editor-heading h2 span {
    color: #d7193f;
}


.editor-heading p {
    max-width: 610px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.85;

    color: #9da1ad;
}


/* HEADING LINK */

.editor-heading-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding-bottom: 5px;

    border-bottom:
        1px solid rgba(215, 25, 63, 0.45);

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;

    color: #d7193f;

    text-decoration: none;

    transition: 0.3s ease;
}


.editor-heading-link span {
    font-size: 16px;

    transition: 0.3s ease;
}


.editor-heading-link:hover {
    color: #ffffff;
}


.editor-heading-link:hover span {
    transform: translateX(4px);
}


/* ================================
   GRID
================================ */

.editor-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ================================
   CARD
================================ */

.editor-card {
    position: relative;

    display: block;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.96),
            rgba(9, 10, 14, 0.98)
        );

    text-decoration: none;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.editor-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(215, 25, 63, 0.28);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(215, 25, 63, 0.05);
}


/* ================================
   IMAGE
================================ */

.editor-image {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #0d0e13;
}


.editor-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 5, 8, 0.02) 35%,
            rgba(4, 5, 8, 0.25) 65%,
            rgba(4, 5, 8, 0.82) 100%
        );

    pointer-events: none;
}


.editor-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


.editor-card:hover .editor-image img {
    transform: scale(1.045);
}


/* ================================
   BADGE
================================ */

.editor-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 10px;

    border:
        1px solid rgba(215, 25, 63, 0.35);

    border-radius: 20px;

    background:
        rgba(7, 8, 11, 0.72);

    backdrop-filter: blur(8px);

    font-family: Arial, sans-serif;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #ffffff;
}


.editor-badge::before {
    content: "";

    display: inline-block;

    width: 5px;
    height: 5px;

    margin-right: 6px;

    border-radius: 50%;

    background: #d7193f;

    vertical-align: middle;
}


/* NUMBER */

.editor-number {
    position: absolute;

    right: 16px;
    top: 16px;

    z-index: 3;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.55);
}


/* ================================
   CONTENT
================================ */

.editor-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 82px;

    padding: 18px 18px 19px;
}


.editor-profile-info h3 {
    margin: 0 0 5px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;
}


.editor-profile-info span {
    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #d7193f;
}


/* ARROW */

.editor-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    font-size: 15px;

    color: #777b86;

    transition: 0.3s ease;
}


.editor-card:hover .editor-arrow {
    color: #ffffff;

    border-color:
        rgba(215, 25, 63, 0.35);

    background:
        rgba(215, 25, 63, 0.10);

    transform: translateX(3px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .editor-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }

    .editor-image {
        height: 430px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .editor-section {
        padding: 70px 15px;
    }


    .editor-heading {
        display: block;

        margin-bottom: 35px;
    }


    .editor-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }


    .editor-label::before {
        width: 25px;
    }


    .editor-heading h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .editor-heading p {
        font-size: 11px;

        line-height: 1.8;
    }


    .editor-heading-link {
        margin-top: 20px;

        font-size: 9px;
    }


    .editor-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .editor-image {
        height: 280px;
    }


    .editor-card {
        border-radius: 14px;
    }


    .editor-badge {
        top: 10px;
        left: 10px;

        padding: 6px 8px;

        font-size: 6px;
    }


    .editor-number {
        top: 12px;
        right: 12px;

        font-size: 8px;
    }


    .editor-content {
        min-height: 68px;

        padding: 13px 12px;
    }


    .editor-profile-info h3 {
        font-size: 13px;

        margin-bottom: 4px;
    }


    .editor-profile-info span {
        font-size: 7px;

        letter-spacing: 0.8px;
    }


    .editor-arrow {
        width: 27px;
        height: 27px;

        font-size: 12px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .editor-section {
        padding: 60px 12px;
    }


    .editor-heading h2 {
        font-size: 30px;
    }


    .editor-grid {
        gap: 9px;
    }


    .editor-image {
        height: 250px;
    }


    .editor-content {
        padding: 11px 10px;
    }


    .editor-profile-info h3 {
        font-size: 12px;
    }

}
/* ================================
   FEATURED PROFILES
================================ */

.featured-section {
    position: relative;
    width: 100%;
    padding: 95px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #090a0e 0%,
            #07080b 100%
        );
}


/* subtle crimson glow */

.featured-section::before {
    content: "";

    position: absolute;

    top: -120px;
    right: 8%;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.055);

    filter: blur(75px);

    pointer-events: none;
}


/* ================================
   CONTAINER
================================ */

.featured-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.featured-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 48px;
}


.featured-heading-content {
    max-width: 700px;
}


.featured-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.featured-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


.featured-heading h2 {
    margin: 0 0 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #ffffff;
}


.featured-heading h2 span {
    color: #d7193f;
}


.featured-heading p {
    max-width: 620px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.85;

    color: #9da1ad;
}


/* ================================
   HEADING MARK
================================ */

.featured-heading-mark {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    flex-shrink: 0;

    padding-bottom: 3px;
}


.featured-heading-mark span {
    font-family: Arial, sans-serif;

    font-size: 46px;

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -3px;

    color: rgba(255, 255, 255, 0.09);
}


.featured-heading-mark small {
    margin-top: 8px;

    font-family: Arial, sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d7193f;
}


/* ================================
   GRID
================================ */

.featured-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ================================
   CARD
================================ */

.featured-card {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    background:
        #0c0d12;

    text-decoration: none;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.32);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.featured-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(215, 25, 63, 0.28);

    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(215, 25, 63, 0.05);
}


/* ================================
   IMAGE
================================ */

.featured-image {
    position: relative;

    width: 100%;
    height: 400px;

    overflow: hidden;

    background: #0d0e13;
}


.featured-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


.featured-card:hover .featured-image img {
    transform: scale(1.05);
}


/* IMAGE OVERLAY */

.featured-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 5, 8, 0.03) 30%,
            rgba(4, 5, 8, 0.18) 58%,
            rgba(4, 5, 8, 0.88) 100%
        );

    pointer-events: none;
}


/* ================================
   BADGE
================================ */

.featured-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    padding: 7px 10px;

    border-radius: 20px;

    border:
        1px solid rgba(215, 25, 63, 0.35);

    background:
        rgba(7, 8, 11, 0.72);

    backdrop-filter: blur(8px);

    font-family: Arial, sans-serif;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #ffffff;
}


.featured-badge::before {
    content: "";

    display: inline-block;

    width: 5px;
    height: 5px;

    margin-right: 6px;

    border-radius: 50%;

    background: #d7193f;

    vertical-align: middle;
}


/* NUMBER */

.featured-number {
    position: absolute;

    top: 17px;
    right: 17px;

    z-index: 3;

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.55);
}


/* ================================
   CONTENT
================================ */

.featured-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 88px;

    padding: 18px 18px 19px;
}


.featured-profile-info {
    min-width: 0;
}


.featured-category {
    display: block;

    margin-bottom: 6px;

    font-family: Arial, sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #d7193f;
}


.featured-profile-info h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;
}


/* ARROW */

.featured-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    font-size: 15px;

    color: #777b86;

    transition: 0.3s ease;
}


.featured-card:hover .featured-arrow {
    color: #ffffff;

    border-color:
        rgba(215, 25, 63, 0.35);

    background:
        rgba(215, 25, 63, 0.10);

    transform: translateX(3px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }

    .featured-image {
        height: 430px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .featured-section {
        padding: 70px 15px;
    }


    .featured-heading {
        display: block;

        margin-bottom: 35px;
    }


    .featured-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }


    .featured-label::before {
        width: 25px;
    }


    .featured-heading h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .featured-heading p {
        font-size: 11px;

        line-height: 1.8;
    }


    .featured-heading-mark {
        display: none;
    }


    .featured-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .featured-card {
        border-radius: 14px;
    }


    .featured-image {
        height: 280px;
    }


    .featured-badge {
        top: 10px;
        left: 10px;

        padding: 6px 8px;

        font-size: 6px;
    }


    .featured-number {
        top: 12px;
        right: 12px;

        font-size: 8px;
    }


    .featured-content {
        min-height: 70px;

        padding: 13px 12px;
    }


    .featured-category {
        margin-bottom: 4px;

        font-size: 6px;

        letter-spacing: 1px;
    }


    .featured-profile-info h3 {
        font-size: 13px;
    }


    .featured-arrow {
        width: 27px;
        height: 27px;

        font-size: 12px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .featured-section {
        padding: 60px 12px;
    }


    .featured-heading h2 {
        font-size: 30px;
    }


    .featured-grid {
        gap: 9px;
    }


    .featured-image {
        height: 250px;
    }


    .featured-content {
        padding: 11px 10px;
    }


    .featured-profile-info h3 {
        font-size: 12px;
    }

}

/* ================================
   PREMIUM PROFILES
================================ */

.premium-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(215, 25, 63, 0.06),
            transparent 28%
        ),
        #07080b;
}


/* ================================
   CONTAINER
================================ */

.premium-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.premium-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 48px;
}


.premium-heading-content {
    max-width: 700px;
}


.premium-label {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.premium-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


.premium-heading h2 {
    margin: 0 0 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    color: #ffffff;
}


.premium-heading h2 span {
    color: #d7193f;
}


.premium-heading p {
    max-width: 620px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.85;

    color: #9da1ad;
}


.premium-heading-line {
    width: 90px;
    height: 2px;

    margin-bottom: 5px;

    flex-shrink: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7193f
        );
}


/* ================================
   GRID
================================ */

.premium-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* ================================
   CARD
================================ */

.premium-card {
    position: relative;

    display: block;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.95),
            rgba(9, 10, 14, 0.98)
        );

    text-decoration: none;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.premium-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(215, 25, 63, 0.24);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.40),
        0 0 25px rgba(215, 25, 63, 0.04);
}


/* ================================
   IMAGE
================================ */

.premium-image {
    position: relative;

    width: 100%;
    height: 350px;

    overflow: hidden;

    background: #0d0e13;
}


.premium-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4, 5, 8, 0.02) 40%,
            rgba(4, 5, 8, 0.15) 65%,
            rgba(4, 5, 8, 0.72) 100%
        );

    pointer-events: none;
}


.premium-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease;
}


.premium-card:hover .premium-image img {
    transform: scale(1.045);
}


/* ================================
   NUMBER
================================ */

.premium-number {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    background:
        rgba(7, 8, 11, 0.68);

    backdrop-filter: blur(8px);

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    color: rgba(255, 255, 255, 0.70);
}


/* ================================
   CATEGORY
================================ */

.premium-category {
    position: absolute;

    right: 15px;
    top: 15px;

    z-index: 3;

    padding: 7px 9px;

    border:
        1px solid rgba(215, 25, 63, 0.28);

    border-radius: 20px;

    background:
        rgba(7, 8, 11, 0.70);

    backdrop-filter: blur(8px);

    font-family: Arial, sans-serif;

    font-size: 6px;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #ffffff;
}


/* ================================
   CONTENT
================================ */

.premium-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    min-height: 82px;

    padding: 17px 18px;
}


.premium-content h3 {
    margin: 0 0 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.2;

    color: #ffffff;
}


.premium-content > span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 600;

    color: #777b86;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.premium-content > span b {
    font-size: 13px;

    font-weight: 400;

    transition: transform 0.3s ease;
}


.premium-card:hover .premium-content > span {
    color: #d7193f;
}


.premium-card:hover .premium-content > span b {
    transform: translateX(3px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .premium-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }

    .premium-image {
        height: 430px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .premium-section {
        padding: 70px 15px;
    }


    .premium-heading {
        display: block;

        margin-bottom: 35px;
    }


    .premium-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }


    .premium-label::before {
        width: 25px;
    }


    .premium-heading h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .premium-heading p {
        font-size: 11px;

        line-height: 1.8;
    }


    .premium-heading-line {
        display: none;
    }


    .premium-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .premium-card {
        border-radius: 14px;
    }


    .premium-image {
        height: 280px;
    }


    .premium-number {
        top: 10px;
        left: 10px;

        width: 27px;
        height: 27px;

        font-size: 7px;
    }


    .premium-category {
        top: 10px;
        right: 10px;

        padding: 6px 7px;

        font-size: 5px;

        letter-spacing: 1px;
    }


    .premium-content {
        min-height: 68px;

        padding: 12px;
    }


    .premium-content h3 {
        font-size: 13px;

        margin-bottom: 4px;
    }


    .premium-content > span {
        font-size: 7px;
    }


    .premium-content > span b {
        font-size: 11px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .premium-section {
        padding: 60px 12px;
    }


    .premium-heading h2 {
        font-size: 30px;
    }


    .premium-grid {
        gap: 9px;
    }


    .premium-image {
        height: 250px;
    }


    .premium-content {
        padding: 10px;
    }


    .premium-content h3 {
        font-size: 12px;
    }


    .premium-content > span {
        font-size: 6px;
    }

}

/* ================================
   PROFILE INFORMATION
================================ */

.profile-info-section {
    position: relative;
    width: 100%;
    padding: 95px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 70%,
            rgba(215, 25, 63, 0.07),
            transparent 30%
        ),
        #07080b;
}


/* ================================
   CONTAINER
================================ */

.profile-info-container {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 80px;

    align-items: center;
}


/* ================================
   CONTENT
================================ */

.profile-info-content {
    max-width: 680px;
}


.profile-info-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.profile-info-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* HEADING */

.profile-info-content h2 {
    margin: 0 0 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1px;

    color: #ffffff;
}


.profile-info-content h2 span {
    display: block;

    color: #d7193f;
}


/* TEXT */

.profile-info-content p {
    max-width: 650px;

    margin: 0 0 17px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.9;

    color: #9da1ad;
}


.profile-info-content p strong {
    font-weight: 600;

    color: #d7d9df;
}


/* LINE */

.profile-info-line {
    width: 65px;
    height: 2px;

    margin-top: 25px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* ================================
   SIDE PANEL
================================ */

.profile-info-panel {
    position: relative;

    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(21, 22, 29, 0.96),
            rgba(9, 10, 14, 0.98)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.36);

    overflow: hidden;
}


.profile-info-panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 80px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


.profile-info-panel::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -100px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.055);

    filter: blur(55px);

    pointer-events: none;
}


/* TOP */

.profile-info-panel-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.profile-info-panel-top span {
    font-family: Arial, sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: #d7193f;
}


.profile-info-panel-top i {
    font-size: 16px;

    color: #d7193f;
}


/* TITLE */

.profile-info-panel-title {
    position: relative;
    z-index: 2;

    margin: 25px 0 20px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    font-weight: 700;

    color: #ffffff;
}


/* LIST */

.profile-info-list {
    position: relative;
    z-index: 2;
}


.profile-info-list-item {
    display: grid;

    grid-template-columns: 30px 1fr 20px;

    align-items: center;

    gap: 12px;

    min-height: 58px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);

    transition:
        padding-left 0.3s ease;
}


.profile-info-list-item:last-child {
    border-bottom: none;
}


.profile-info-list-item:hover {
    padding-left: 5px;
}


.profile-info-list-item > span {
    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #555965;
}


.profile-info-list-item strong {
    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    color: #ffffff;
}


.profile-info-list-item b {
    font-size: 14px;

    font-weight: 400;

    color: #666a76;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.profile-info-list-item:hover b {
    color: #d7193f;

    transform: translateX(3px);
}


/* BOTTOM */

.profile-info-panel-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 18px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.profile-info-panel-bottom span {
    font-family: Arial, sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #777b86;
}


.profile-info-panel-bottom i {
    font-size: 13px;

    color: #d7193f;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .profile-info-section {
        padding: 80px 20px;
    }

    .profile-info-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .profile-info-content {
        max-width: 720px;
    }

    .profile-info-panel {
        width: min(600px, 100%);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .profile-info-section {
        padding: 70px 15px;
    }


    .profile-info-container {
        gap: 40px;
    }


    .profile-info-label {
        font-size: 8px;

        letter-spacing: 2.2px;

        gap: 8px;
    }


    .profile-info-label::before {
        width: 25px;
    }


    .profile-info-content h2 {
        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .profile-info-content h2 span {
        display: inline;
    }


    .profile-info-content p {
        font-size: 11px;

        line-height: 1.8;
    }


    .profile-info-line {
        width: 55px;

        margin-top: 22px;
    }


    .profile-info-panel {
        padding: 24px;

        border-radius: 19px;
    }


    .profile-info-panel::before {
        left: 24px;

        width: 65px;
    }


    .profile-info-panel-title {
        margin: 22px 0 16px;

        font-size: 22px;
    }


    .profile-info-list-item {
        min-height: 54px;

        grid-template-columns:
            27px
            1fr
            18px;

        gap: 9px;
    }


    .profile-info-list-item strong {
        font-size: 11px;
    }


    .profile-info-panel-bottom {
        margin-top: 15px;

        padding-top: 15px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .profile-info-section {
        padding: 60px 12px;
    }


    .profile-info-content h2 {
        font-size: 30px;
    }


    .profile-info-panel {
        padding: 21px;
    }


    .profile-info-panel-title {
        font-size: 20px;
    }


    .profile-info-list-item strong {
        font-size: 10px;
    }

}