/* =========================================================
   GLOBALFAMILY - MODERN NEWS / JOB DETAIL UI
   ========================================================= */

:root {
    --gf-primary: #1D3557;
    --gf-primary-dark: #14263d;
    --gf-accent: #F4A261;
    --gf-orange: #FFA500;
    --gf-bg: #f5f7fa;
    --gf-card: #ffffff;
    --gf-text: #1f2937;
    --gf-muted: #6b7280;
    --gf-border: #e5e7eb;
    --gf-radius: 16px;
    --gf-shadow: 0 8px 30px rgba(29, 53, 87, 0.08);
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

.section-space-bottom {
    background: var(--gf-bg);
    padding: 25px 0 50px;
}

.section-space-bottom > .row {
    max-width: 1180px;
    margin: auto;
}


/* =========================================================
   ARTICLE MAIN CONTAINER
   ========================================================= */

.news-header-box,
.news-content,
.news-image,
.video-box,
.social-grid,
.media-body,
.profile-section {
    width: 100%;
}


/* =========================================================
   NEWS HEADER
   ========================================================= */

.news-header-box {
    background: var(--gf-card);
    padding: 30px 35px;
    border-radius: var(--gf-radius);
    border: 1px solid var(--gf-border);
    box-shadow: var(--gf-shadow);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.news-header-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--gf-primary),
        var(--gf-orange)
    );
}

.news-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--gf-primary);
    margin: 0 0 22px;
    letter-spacing: -0.5px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid var(--gf-border);
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gf-text);
}


/* =========================================================
   APPLY BUTTON
   ========================================================= */

.apply {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 210px;
    margin: 20px auto;
    padding: 14px 28px;

    border: none;
    border-radius: 50px;

    background: linear-gradient(
        135deg,
        var(--gf-primary),
        #27496d
    );

    color: #fff;
    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(29, 53, 87, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.apply:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(29, 53, 87, 0.30);
}

.apply:active {
    transform: translateY(0);
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.news-image {
    background: var(--gf-card);
    padding: 10px;
    border-radius: var(--gf-radius);
    border: 1px solid var(--gf-border);
    box-shadow: var(--gf-shadow);
    margin: 20px 0;
    overflow: hidden;
}

.news-image img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 11px;
}


/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.news-content {
    background: var(--gf-card);
    padding: 35px 40px;
    margin: 20px 0;
    border-radius: var(--gf-radius);
    border: 1px solid var(--gf-border);
    box-shadow: var(--gf-shadow);

    font-size: 17px;
    line-height: 1.85;
    color: var(--gf-text);

    overflow-wrap: break-word;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content h2 {
    color: var(--gf-primary);
    font-size: 28px;
    margin: 30px 0 15px;
    font-weight: 750;
}

.news-content h3 {
    color: var(--gf-primary);
    font-size: 23px;
    margin: 25px 0 12px;
}

.news-content h4 {
    color: var(--gf-primary);
    font-size: 19px;
    margin: 20px 0 10px;
}

.news-content ul,
.news-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.news-content li {
    margin-bottom: 8px;
}

.news-content a {
    color: #1565c0;
    font-weight: 600;
    text-decoration: underline;
}

.news-content a:hover {
    color: var(--gf-orange);
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}


/* =========================================================
   TABLES INSIDE ARTICLE
   ========================================================= */

.news-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    overflow: hidden;
    border-radius: 10px;
}

.news-content th {
    background: var(--gf-primary);
    color: #fff;
    padding: 13px;
    text-align: left;
}

.news-content td {
    padding: 12px;
    border: 1px solid var(--gf-border);
}

.news-content tr:nth-child(even) {
    background: #f8fafc;
}


/* =========================================================
   VIDEO
   ========================================================= */

.video-box {
    background: #111827;
    padding: 8px;
    border-radius: var(--gf-radius);
    overflow: hidden;
    margin: 25px 0;
    box-shadow: var(--gf-shadow);
}

.video-box iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border-radius: 10px;
}


/* =========================================================
   SOCIAL GRID
   ========================================================= */

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.social-card {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: 14px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.social-info {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 16px;
    font-weight: 700;
    color: var(--gf-primary);
}

.social-info i {
    font-size: 23px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 40px;

    background: #f1f5f9;
    color: var(--gf-primary);

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--gf-primary);
    color: #fff;
    text-decoration: none;
}


/* =========================================================
   SOCIAL BRAND COLORS
   ========================================================= */

.whatsapp .social-info i {
    color: #25D366;
}

.instagram .social-info i {
    color: #E1306C;
}

.linkedin .social-info i {
    color: #0A66C2;
}

.quora .social-info i {
    color: #B92B27;
}


/* =========================================================
   COMMENT SECTION
   ========================================================= */

.media-body {
    background: var(--gf-card);
    padding: 22px !important;
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    box-shadow: var(--gf-shadow);
    margin: 25px 0;
}

.media-body > div:first-child {
    gap: 12px;
}

.media-body img.rounded-circle {
    width: 52px;
    height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gf-accent);
}

.textarea {
    min-height: 48px;
    resize: vertical;

    border: 1px solid var(--gf-border) !important;
    border-radius: 12px !important;

    padding: 12px 15px !important;

    font-size: 15px;

    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.textarea:focus {
    border-color: var(--gf-primary) !important;
    box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.08) !important;
    outline: none;
}

.Comment {
    border: none;
    background: var(--gf-primary);
    color: #fff;

    padding: 12px 18px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.Comment:hover {
    background: var(--gf-primary-dark);
    transform: translateY(-1px);
}


/* =========================================================
   COMMENTS LIST
   ========================================================= */

.comyment {
    display: flex;
    gap: 13px;

    margin-top: 18px;
    padding: 16px;

    background: #f8fafc;

    border: 1px solid var(--gf-border);
    border-radius: 13px;
}

.profilee-picture {
    width: 45px;
    height: 45px;

    object-fit: cover;

    border-radius: 50%;

    flex-shrink: 0;

    border: 2px solid #fff;

    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.commendt-details {
    flex: 1;
    min-width: 0;
}

.commendt-name {
    margin: 0 0 5px;

    font-weight: 700;
    color: var(--gf-primary);
}

.commendt-text {
    margin: 0;
    color: var(--gf-text);

    font-size: 14px;
    line-height: 1.6;

    word-break: break-word;
}


/* =========================================================
   RELATED POSTS
   ========================================================= */

.profile-section {
    background: transparent;
    padding: 10px 0 30px;
}

.profile-section h2 {
    position: relative;

    color: var(--gf-primary);

    font-size: 28px;
    font-weight: 800;

    margin: 10px 0 25px;
    padding-left: 15px;
}

.profile-section h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: 3px;

    width: 5px;
    height: 30px;

    border-radius: 5px;

    background: var(--gf-orange);
}


/* =========================================================
   RELATED POST CARD
   ========================================================= */

.post-card {
    display: flex;

    background: var(--gf-card);

    border: 1px solid var(--gf-border);
    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 15px;

    box-shadow: 0 5px 18px rgba(0,0,0,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,.10);
}

.post-card > a {
    flex: 0 0 190px;
}

.post-imager {
    width: 190px;
    height: 125px;

    object-fit: cover;

    display: block;
}

.post-content {
    padding: 16px 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}

.post-title {
    margin: 0 0 10px;

    font-size: 17px;
    line-height: 1.4;
}

.post-title a {
    color: var(--gf-primary);
    text-decoration: none;
    font-weight: 750;
}

.post-title a:hover {
    color: var(--gf-orange);
}

.post-date {
    margin: 0;

    font-size: 13px;

    color: var(--gf-muted);
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {

    .section-space-bottom {
        padding: 15px 12px 35px;
    }

    .news-header-box {
        padding: 25px;
    }

    .news-content {
        padding: 28px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-box iframe {
        min-height: 380px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .section-space-bottom {
        padding: 10px 8px 30px;
    }

    .news-header-box {
        padding: 22px 18px;
        border-radius: 13px;
    }

    .news-title {
        font-size: 25px;
        line-height: 1.3;
        margin-bottom: 17px;
    }

    .news-meta {
        gap: 8px;
    }

    .meta-box {
        font-size: 12px;
        padding: 8px 11px;
    }

    .apply {
        width: 100%;
        max-width: 330px;
        margin: 18px auto;
        padding: 14px 20px;
    }

    .news-image {
        padding: 6px;
        border-radius: 12px;
    }

    .news-image img {
        max-height: 400px;
        border-radius: 8px;
    }

    .news-content {
        padding: 22px 18px;
        border-radius: 13px;

        font-size: 16px;
        line-height: 1.75;
    }

    .news-content h2 {
        font-size: 23px;
    }

    .news-content h3 {
        font-size: 20px;
    }

    .news-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .social-card {
        padding: 14px;
    }

    .social-info {
        font-size: 13px;
    }

    .social-info i {
        font-size: 20px;
    }

    .social-btn {
        font-size: 12px;
        min-height: 36px;
    }

    .video-box {
        padding: 5px;
    }

    .video-box iframe {
        min-height: 220px;
    }

    .media-body {
        padding: 15px !important;
    }

    .media-body > div:first-child {
        flex-wrap: wrap;
    }

    .textarea {
        flex: 1 1 calc(100% - 65px);
    }

    .Comment {
        width: 100%;
        margin-left: 65px;
    }

    .post-card {
        display: flex;
        flex-direction: row;
    }

    .post-card > a {
        flex: 0 0 105px;
    }

    .post-imager {
        width: 105px;
        height: 105px;
    }

    .post-content {
        padding: 12px;
    }

    .post-title {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .post-date {
        font-size: 11px;
    }

    .profile-section h2 {
        font-size: 23px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .social-grid {
        grid-template-columns: 1fr;
    }

    .news-title {
        font-size: 23px;
    }

    .post-card > a {
        flex: 0 0 90px;
    }

    .post-imager {
        width: 90px;
        height: 95px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.apply:focus,
.Comment:focus,
.social-btn:focus {
    outline: 3px solid rgba(244, 162, 97, 0.4);
    outline-offset: 2px;
}


/* =========================================================
   SMOOTH ARTICLE SELECTION
   ========================================================= */

.news-content ::selection {
    background: var(--gf-accent);
    color: #111;
}

 /* ==========================================
    GLOBALFAMILY ARTICLE HEADINGS
    DESKTOP + MOBILE
    ========================================== */

.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
    font-family: "Poppins", "Inter", Arial, sans-serif !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    box-sizing: border-box;
}


/* ==============================
   H1 - MAIN HEADING
   ============================== */

.news-content h1 {
    display: block !important;
    width: 100% !important;

    font-size: 38px !important;
    line-height: 1.25 !important;

    color: #ffffff !important;

    background: linear-gradient(
        135deg,
        #1D3557 0%,
        #27496D 100%
    ) !important;

    padding: 18px 24px !important;
    margin: 30px 0 22px !important;

    border-left: 7px solid #FFA500 !important;
    border-radius: 10px !important;

    box-shadow: 0 6px 18px rgba(29, 53, 87, 0.18) !important;

    text-align: left !important;
}


/* ==============================
   H2
   ============================== */

.news-content h2 {
    display: block !important;
    width: 100% !important;

    font-size: 30px !important;
    line-height: 1.3 !important;

    color: #ffffff !important;

    background: #1D3557 !important;

    padding: 14px 20px !important;
    margin: 28px 0 18px !important;

    border-left: 6px solid #FFA500 !important;
    border-radius: 8px !important;

    box-shadow: 0 4px 14px rgba(29, 53, 87, 0.14) !important;

    text-align: left !important;
}


/* ==============================
   H3
   ============================== */

.news-content h3 {
    display: block !important;
    width: 100% !important;

    font-size: 25px !important;
    line-height: 1.35 !important;

    color: #1D3557 !important;

    background: #F1F4F7 !important;

    padding: 12px 17px !important;
    margin: 24px 0 15px !important;

    border-left: 5px solid #F4A261 !important;
    border-radius: 7px !important;

    text-align: left !important;
}


/* ==============================
   H4
   ============================== */

.news-content h4 {
    display: block !important;
    width: 100% !important;

    font-size: 22px !important;

    color: #1D3557 !important;

    background: #F7F8FA !important;

    padding: 10px 15px !important;
    margin: 21px 0 12px !important;

    border-left: 4px solid #FFA500 !important;
    border-radius: 6px !important;
}


/* ==============================
   H5
   ============================== */

.news-content h5 {
    display: block !important;
    width: 100% !important;

    font-size: 19px !important;

    color: #1D3557 !important;

    padding: 8px 12px !important;
    margin: 18px 0 10px !important;

    border-left: 4px solid #F4A261 !important;
}


/* ==============================
   H6
   ============================== */

.news-content h6 {
    display: block !important;
    width: 100% !important;

    font-size: 16px !important;

    color: #374151 !important;

    padding: 7px 10px !important;
    margin: 16px 0 8px !important;

    border-left: 3px solid #FFA500 !important;
}


/* ==================================================
   DESKTOP LARGE SCREEN
   ================================================== */

@media (min-width: 1200px) {

    .news-content h1 {
        font-size: 40px !important;
        padding: 20px 26px !important;
    }

    .news-content h2 {
        font-size: 31px !important;
        padding: 15px 21px !important;
    }

    .news-content h3 {
        font-size: 26px !important;
    }
}


/* ==================================================
   TABLET
   ================================================== */

@media (min-width: 768px) and (max-width: 1199px) {

    .news-content h1 {
        font-size: 34px !important;
    }

    .news-content h2 {
        font-size: 27px !important;
    }

    .news-content h3 {
        font-size: 23px !important;
    }
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 767px) {

    .news-content h1 {
        font-size: 27px !important;
        line-height: 1.3 !important;
        padding: 14px 16px !important;
        margin: 22px 0 17px !important;

        border-left-width: 5px !important;
    }

    .news-content h2 {
        font-size: 23px !important;
        padding: 11px 15px !important;
        margin: 23px 0 15px !important;
    }

    .news-content h3 {
        font-size: 20px !important;
        padding: 10px 13px !important;
    }

    .news-content h4 {
        font-size: 18px !important;
    }

    .news-content h5 {
        font-size: 16px !important;
    }

    .news-content h6 {
        font-size: 15px !important;
    }
}

/* =========================================================
   GLOBALFAMILY COMMENT SECTION
   Modern Desktop + Mobile UI
   ========================================================= */

.media-body {
    width: 100%;
    max-width: 100%;

    margin: 30px 0 !important;
    padding: 25px !important;

    background: #ffffff;

    border: 1px solid #e5e7eb !important;
    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(29, 53, 87, 0.08);

    text-align: left !important;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   COMMENT INPUT AREA
   ========================================================= */

.media-body > div:first-child {
    display: flex !important;
    align-items: center;

    width: 100%;

    gap: 12px;

    margin-bottom: 25px;
}


/* =========================================================
   USER PROFILE IMAGE
   ========================================================= */

.media-body img.rounded-circle {
    width: 52px !important;
    height: 52px !important;

    min-width: 52px;
    min-height: 52px;

    object-fit: cover;

    border-radius: 50% !important;

    border: 3px solid #F4A261;

    background: #f5f7fa;

    display: block;

    box-shadow: 0 3px 10px rgba(29, 53, 87, 0.15);
}


/* =========================================================
   COMMENT TEXTAREA
   ========================================================= */

.media-body .textarea {
    flex: 1;

    width: 100%;

    min-height: 50px;

    padding: 13px 16px !important;

    background: #f8fafc;

    border: 1px solid #dfe4ea !important;

    border-radius: 12px !important;

    color: #1f2937;

    font-size: 15px;

    line-height: 1.5;

    resize: vertical;

    outline: none;

    box-shadow: none !important;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.media-body .textarea::placeholder {
    color: #9ca3af;
}


.media-body .textarea:focus {
    background: #ffffff;

    border-color: #1D3557 !important;

    box-shadow:
        0 0 0 3px rgba(29, 53, 87, 0.08) !important;
}


/* =========================================================
   POST COMMENT BUTTON
   ========================================================= */

.media-body .Comment {
    flex-shrink: 0;

    min-width: 135px;

    min-height: 48px;

    padding: 12px 18px;

    border: none;

    border-radius: 11px;

    background: linear-gradient(
        135deg,
        #1D3557,
        #27496D
    );

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    box-shadow:
        0 5px 14px rgba(29, 53, 87, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.media-body .Comment:hover {
    background: linear-gradient(
        135deg,
        #14263d,
        #1D3557
    );

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(29, 53, 87, 0.28);
}


.media-body .Comment:active {
    transform: translateY(0);
}


/* =========================================================
   COMMENTS LIST
   ========================================================= */

.comments-list {
    width: 100%;
}


/* =========================================================
   SINGLE COMMENT
   ========================================================= */

.comyment {
    display: flex !important;
    align-items: flex-start;

    width: 100%;

    gap: 13px;

    padding: 16px;

    margin: 0 0 13px 0;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    box-sizing: border-box;

    text-align: left;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.comyment:hover {
    border-color: #d5dce5;

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(29, 53, 87, 0.07);
}


/* =========================================================
   COMMENT PROFILE IMAGE
   ========================================================= */

.profilee-picture {
    width: 45px !important;
    height: 45px !important;

    min-width: 45px;
    min-height: 45px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #ffffff;

    background: #e5e7eb;

    display: block;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   COMMENT DETAILS
   ========================================================= */

.commendt-details {
    flex: 1;

    min-width: 0;
}


/* =========================================================
   USER NAME
   ========================================================= */

.commendt-name {
    margin: 0 0 5px 0 !important;

    color: #1D3557;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 750;
}


/* =========================================================
   COMMENT TEXT
   ========================================================= */

.commendt-text {
    margin: 0 !important;

    color: #374151;

    font-size: 14px;

    line-height: 1.65;

    word-wrap: break-word;

    overflow-wrap: anywhere;
}


.commendt-text b {
    color: #1D3557;

    font-weight: 700;
}


/* =========================================================
   EMPTY COMMENT STATE
   ========================================================= */

.no-comments {
    width: 100%;

    padding: 20px;

    margin-top: 10px;

    background: #f8fafc;

    border: 1px dashed #cbd5e1;

    border-radius: 12px;

    color: #64748b;

    text-align: center;

    font-size: 14px;

    box-sizing: border-box;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .media-body {
        padding: 20px !important;
        border-radius: 15px;
    }

    .media-body > div:first-child {
        gap: 10px;
    }

    .media-body .Comment {
        min-width: 120px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .media-body {
        padding: 16px !important;

        margin: 20px 0 !important;

        border-radius: 14px;
    }


    /* Input layout */

    .media-body > div:first-child {
        display: grid !important;

        grid-template-columns: 45px 1fr;

        gap: 10px;

        align-items: start;
    }


    /* Profile */

    .media-body img.rounded-circle {
        width: 45px !important;
        height: 45px !important;

        min-width: 45px;
        min-height: 45px;
    }


    /* Textarea */

    .media-body .textarea {
        width: 100%;

        min-height: 48px;

        padding: 11px 13px !important;

        font-size: 14px;
    }


    /* Button */

    .media-body .Comment {
        grid-column: 2;

        width: 100%;

        min-width: 0;

        min-height: 43px;

        padding: 10px 15px;

        font-size: 13px;
    }


    /* Comments */

    .comyment {
        gap: 10px;

        padding: 13px;

        margin-bottom: 10px;

        border-radius: 12px;
    }


    .profilee-picture {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px;
        min-height: 40px;
    }


    .commendt-name {
        font-size: 14px;
    }


    .commendt-text {
        font-size: 13px;

        line-height: 1.6;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .media-body {
        padding: 12px !important;
    }


    .media-body > div:first-child {
        grid-template-columns: 40px 1fr;

        gap: 8px;
    }


    .media-body img.rounded-circle {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px;
        min-height: 40px;
    }


    .media-body .Comment {
        grid-column: 2;
    }


    .comyment {
        padding: 11px;
    }
}