/* ==========================================================
   RUANG BESTARI — AUTHOR PROFILE
   Desktop first
   ========================================================== */

@media (min-width: 1025px) {

    /* -------------------------------------------------------
       AUTHOR PAGE — BASE LAYOUT
       ------------------------------------------------------- */

    body.author #primary.content-area {
        width: 100% !important;
        max-width: none !important;
    }

    body.author #primary .content-container.site-container {
        display: block !important;
        width: 100% !important;
    }

    body.author #primary #main.site-main {
        width: 100% !important;
        max-width: none !important;
    }

    /* Sidebar Kadence bawaan tidak digunakan pada profil penulis. */
    body.author #secondary {
        display: none !important;
    }

    /*
     * Archive header bawaan Kadence digantikan hero custom.
     * Hanya desktop untuk tahap ini.
     */
    body.author #main > header.entry-header {
        display: none !important;
    }


    /* ======================================================
       HERO PROFIL
       ====================================================== */

    .rb-author-profile-hero {
        position: relative;

        width: 100%;
        margin: 6px 0 34px;
        padding: 34px 42px;

        overflow: hidden;

        border: 1px solid #F0E3C8;
        border-radius: 24px;

        background:
            radial-gradient(
                circle at 91% 22%,
                rgba(224, 151, 43, .10) 0,
                rgba(224, 151, 43, 0) 150px
            ),
            linear-gradient(
                135deg,
                #FFF9EE 0%,
                #FFFCF6 62%,
                #FFF7E7 100%
            );

        box-sizing: border-box;
    }

    .rb-author-profile-hero::after {
        content: "";

        position: absolute;
        right: -65px;
        bottom: -105px;

        width: 320px;
        height: 320px;

        border: 1px solid rgba(216, 130, 0, .10);
        border-radius: 50%;

        box-shadow:
            0 0 0 42px rgba(216, 130, 0, .028),
            0 0 0 88px rgba(216, 130, 0, .018);

        pointer-events: none;
    }


    .rb-author-profile-hero__inner {
        position: relative;
        z-index: 2;

        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 36px;

        align-items: center;

        width: 100%;
        max-width: 1020px;
    }


    /* -------------------------------------------------------
       AVATAR
       ------------------------------------------------------- */

    .rb-author-profile-hero__avatar-wrap {
        position: relative;

        width: 190px;
        height: 190px;

        padding: 5px;

        border-radius: 50%;

        background: #FFFFFF;

        box-shadow:
            0 10px 28px rgba(25, 28, 31, .07),
            0 0 0 1px rgba(15, 149, 153, .09);

        box-sizing: border-box;
    }

    .rb-author-profile-hero__avatar {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        border-radius: 50%;
    }


    /* -------------------------------------------------------
       CONTENT
       ------------------------------------------------------- */

    .rb-author-profile-hero__content {
        min-width: 0;
        max-width: 760px;
    }

    .rb-author-profile-hero__eyebrow {
        display: block;

        margin: 0 0 8px;

        color: #D98200;

        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: .08em;

        text-transform: uppercase;
    }


    .rb-author-profile-hero__headline {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;

        margin: 0 0 14px;
    }

    .rb-author-profile-hero__name {
        margin: 0;

        color: #191C1F;

        font-size: clamp(28px, 2.5vw, 36px);
        font-weight: 750;
        line-height: 1.13;
        letter-spacing: -.025em;
    }


    /* Jumlah tulisan */
    .rb-author-profile-hero__count {
        display: inline-flex;
        align-items: center;
        gap: 6px;

        padding: 7px 11px;

        border: 1px solid rgba(15, 149, 153, .12);
        border-radius: 999px;

        background: #EAF6F4;

        color: #145A58;

        font-size: 11px;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
    }

    .rb-author-profile-hero__count::before {
        content: "";

        width: 7px;
        height: 9px;

        border: 1.5px solid #19898A;
        border-radius: 2px;

        box-sizing: border-box;
    }


    /* Bio */
    .rb-author-profile-hero__bio {
        max-width: 700px;

        margin: 0;

        color: #535B5F;

        font-size: 14.5px;
        font-weight: 400;
        line-height: 1.72;
    }


    /* -------------------------------------------------------
       ACTIONS
       ------------------------------------------------------- */

    .rb-author-profile-hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;

        margin-top: 20px;
    }

    .rb-author-profile-hero__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        min-height: 38px;

        padding: 8px 14px;

        color: #145A58;

        font-size: 12px;
        font-weight: 650;
        line-height: 1;

        text-decoration: none;

        border: 1px solid #B8D2D0;
        border-radius: 10px;

        background: rgba(255,255,255,.62);

        transition:
            background .18s ease,
            border-color .18s ease,
            transform .18s ease;

        box-sizing: border-box;
    }

    .rb-author-profile-hero__button:hover {
        color: #0D4D4E;
        border-color: #8AB8B5;
        background: #FFFFFF;

        transform: translateY(-1px);
    }
}


/* ----------------------------------------------------------
   Tahap desktop:
   mobile/tablet tetap menggunakan tampilan author lama dahulu.
   ---------------------------------------------------------- */

@media (max-width: 1024px) {

    /* Gunakan hero profil custom juga di tablet/mobile. */
    body.author .rb-author-profile-hero {
        display: block !important;
    }

    /* Jangan tampilkan judul bawaan WordPress seperti "User". */
    body.author #main > header.entry-header {
        display: none !important;
    }
}

/* END AUTHOR PROFILE */


/* ==========================================================
   ULTIMATE MEMBER — EDITORIAL PUBLIC PROFILE
   Desktop
   ========================================================== */

@media (min-width: 1025px) {

    /* -------------------------------------------------------
       1. HILANGKAN HERO PAGE "USER" DARI KADENCE
       ------------------------------------------------------- */

    body.rb-um-public-profile .entry-hero-container,
    body.rb-um-public-profile .entry-hero,
    body.rb-um-public-profile .page-header,
    body.rb-um-public-profile article > .entry-header {
        display: none !important;
    }


    /* -------------------------------------------------------
       2. BERSIHKAN WRAPPER PAGE
       ------------------------------------------------------- */

    body.rb-um-public-profile #primary {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    #primary .content-container.site-container {
        display: block !important;

        width: 100% !important;
        max-width: var(--global-content-width, 1280px) !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.rb-um-public-profile
    #primary #main.site-main {
        width: 100% !important;
        max-width: none !important;
    }

    body.rb-um-public-profile #secondary {
        display: none !important;
    }

    body.rb-um-public-profile article,
    body.rb-um-public-profile .entry-content-wrap,
    body.rb-um-public-profile .entry-content {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        box-shadow: none !important;
    }


    /* -------------------------------------------------------
       3. ULTIMATE MEMBER WRAPPER
       ------------------------------------------------------- */

    body.rb-um-public-profile .um {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
    }

    body.rb-um-public-profile .um-profile {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /*
     * Wrapper masih dibuat oleh template UM, tetapi elemen
     * dashboard/tab publik tidak digunakan lagi.
     */
    body.rb-um-public-profile .um-profile-navbar,
    body.rb-um-public-profile .um-profile-nav,
    body.rb-um-public-profile .um-profile-body {
        display: none !important;
    }


    /* ======================================================
       4. HERO PROFIL
       ====================================================== */

    body.rb-um-public-profile .rb-um-author-hero {
        position: relative;

        display: grid;
        grid-template-columns: 190px minmax(0, 1fr);
        align-items: center;
        gap: 38px;

        width: 100%;

        margin: 34px 0 38px;
        padding: 34px 42px;

        overflow: hidden;

        border: 1px solid #EFE1C3;
        border-radius: 22px;

        background:
            radial-gradient(
                circle at 92% 28%,
                rgba(217,130,0,.085),
                transparent 185px
            ),
            linear-gradient(
                135deg,
                #FFF8EA 0%,
                #FFFCF7 58%,
                #FFF7E7 100%
            );

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-um-author-hero::after {
        content: "";

        position: absolute;
        z-index: 0;

        right: -65px;
        bottom: -125px;

        width: 330px;
        height: 330px;

        border: 1px solid rgba(217,130,0,.09);
        border-radius: 50%;

        box-shadow:
            0 0 0 46px rgba(217,130,0,.026),
            0 0 0 94px rgba(217,130,0,.016);

        pointer-events: none;
    }


    /* Avatar */

    body.rb-um-public-profile
    .rb-um-author-hero__avatar-wrap {
        position: relative;
        z-index: 1;

        width: 190px;
        height: 190px;

        padding: 5px;

        border-radius: 50%;
        background: #FFFFFF;

        box-shadow:
            0 10px 26px rgba(26,38,40,.08),
            0 0 0 1px rgba(17,103,103,.07);

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__avatar {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        border-radius: 50%;
    }


    /* Content */

    body.rb-um-public-profile
    .rb-um-author-hero__content {
        position: relative;
        z-index: 1;

        min-width: 0;
        max-width: 780px;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow {
        display: block;

        margin: 0 0 9px;

        color: #D98200;

        font-size: 11px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: .085em;

        text-transform: uppercase;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__headline {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;

        margin: 0 0 14px;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__name {
        margin: 0 !important;

        color: #191C1F !important;

        font-size: clamp(30px, 2.7vw, 38px) !important;
        font-weight: 750 !important;
        line-height: 1.12 !important;
        letter-spacing: -.026em !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__count {
        display: inline-flex;
        align-items: center;
        gap: 6px;

        padding: 7px 11px;

        color: #145A58;

        font-size: 11px;
        font-weight: 700;
        line-height: 1;

        border-radius: 999px;
        background: #E7F3F1;

        white-space: nowrap;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__count::before {
        content: "";

        width: 7px;
        height: 9px;

        border: 1.5px solid #168487;
        border-radius: 2px;

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__bio {
        max-width: 720px;

        margin: 0 !important;

        color: #535B5F;

        font-size: 14.5px;
        font-weight: 400;
        line-height: 1.7;
    }


    /* Actions */

    body.rb-um-public-profile
    .rb-um-author-hero__actions {
        display: flex;
        gap: 9px;

        margin-top: 19px;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-height: 38px;

        padding: 8px 14px;

        color: #145A58;

        font-size: 12px;
        font-weight: 650;
        line-height: 1;

        text-decoration: none;

        border: 1px solid #B7D0CE;
        border-radius: 10px;

        background: rgba(255,255,255,.65);

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__button:hover {
        color: #0B4D4F;
        border-color: #8DB9B6;
        background: #FFFFFF;
    }

}

/* END UM EDITORIAL PUBLIC PROFILE */



/* ==========================================================
   UM PUBLIC PROFILE — REMOVE LEGACY VISUAL HEADER
   Hero editorial RB menjadi satu-satunya header profil publik.
   ========================================================== */

body.rb-um-public-profile .um-profile .um-cover,
body.rb-um-public-profile .um-profile .um-header,
body.rb-um-public-profile .um-profile .um-profile-navbar,
body.rb-um-public-profile .um-profile .um-profile-nav,
body.rb-um-public-profile .um-profile .um-profile-body {
    display: none !important;
}

/*
 * Bersihkan ruang/margin yang ditinggalkan header UM lama.
 */
body.rb-um-public-profile .um-profile,
body.rb-um-public-profile .um-profile .um-form {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.rb-um-public-profile .um-profile .um-form {
    min-height: 0 !important;
}

/* END REMOVE LEGACY UM PUBLIC PROFILE */



/* ==========================================================
   RB AUTHOR PROFILE — DESKTOP HERO PRECISION POLISH
   ========================================================== */

@media (min-width: 1025px) {

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

    body.rb-um-public-profile .rb-um-author-hero {
        position: relative;

        display: grid !important;
        grid-template-columns: 160px minmax(0, 1fr) !important;
        align-items: center !important;
        column-gap: 30px !important;

        width: 100% !important;

        margin: 26px 0 24px !important;
        padding: 26px 34px !important;

        min-height: 212px !important;

        overflow: hidden !important;

        border: 1px solid rgba(217, 180, 112, .34) !important;
        border-radius: 20px !important;

        background:
            radial-gradient(
                circle at 88% 20%,
                rgba(240, 174, 65, .105) 0,
                rgba(240, 174, 65, .038) 110px,
                transparent 220px
            ),
            linear-gradient(
                118deg,
                #FFF9EE 0%,
                #FFFCF7 54%,
                #FFF7E8 100%
            ) !important;

        box-shadow:
            0 8px 30px rgba(26, 49, 51, .032),
            inset 0 1px 0 rgba(255, 255, 255, .7) !important;

        box-sizing: border-box !important;
    }


    /* ======================================================
       AVATAR
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero__avatar-wrap {
        position: relative;
        z-index: 3;

        width: 160px !important;
        height: 160px !important;

        padding: 4px !important;

        border-radius: 50% !important;

        background: #FFFFFF !important;

        box-shadow:
            0 9px 24px rgba(20, 45, 48, .095),
            0 0 0 1px rgba(20, 90, 88, .08),
            0 0 0 7px rgba(255, 255, 255, .38) !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__avatar {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        border-radius: 50% !important;
    }


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

    body.rb-um-public-profile
    .rb-um-author-hero__content {
        position: relative;
        z-index: 3;

        width: 100% !important;
        max-width: 680px !important;

        min-width: 0 !important;
    }


    /* Label PROFIL PENULIS */

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow {
        display: inline-flex !important;
        align-items: center !important;
        gap: 7px !important;

        margin: 0 0 8px !important;

        color: #C7790A !important;

        font-size: 10.5px !important;
        font-weight: 750 !important;
        line-height: 1 !important;
        letter-spacing: .085em !important;

        text-transform: uppercase !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow::before {
        content: "";

        display: block;

        width: 6px;
        height: 6px;

        border-radius: 50%;

        background: #E6A139;

        box-shadow: 0 0 0 3px rgba(230, 161, 57, .12);
    }


    /* ======================================================
       NAMA + JUMLAH TULISAN
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero__headline {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;

        gap: 10px !important;

        margin: 0 0 11px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__name {
        margin: 0 !important;

        color: #181C1E !important;

        font-size: clamp(30px, 2.45vw, 35px) !important;
        font-weight: 750 !important;
        line-height: 1.08 !important;
        letter-spacing: -.032em !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__count {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;

        min-height: 26px !important;

        padding: 6px 10px !important;

        color: #12605F !important;

        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        border: 1px solid rgba(20, 116, 113, .08) !important;
        border-radius: 999px !important;

        background: #E8F4F1 !important;

        white-space: nowrap !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__count::before {
        content: "";

        display: block;

        width: 7px !important;
        height: 9px !important;

        border: 1.4px solid #168785 !important;
        border-radius: 2px !important;

        background:
            linear-gradient(
                to bottom,
                transparent 0 3px,
                rgba(22, 135, 133, .25) 3px 4px,
                transparent 4px
            );

        box-sizing: border-box !important;
    }


    /* ======================================================
       BIO
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero__bio {
        max-width: 650px !important;

        margin: 0 !important;

        color: #596165 !important;

        font-size: 14px !important;
        font-weight: 400 !important;
        line-height: 1.65 !important;

        letter-spacing: -.005em !important;
    }


    /* ======================================================
       BUTTON / WEBSITE
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero__actions {
        display: flex !important;
        flex-wrap: wrap !important;

        gap: 8px !important;

        margin-top: 16px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__button {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 36px !important;

        padding: 8px 13px !important;

        color: #145D5C !important;

        font-size: 11.5px !important;
        font-weight: 650 !important;

        border: 1px solid rgba(20, 93, 92, .26) !important;
        border-radius: 9px !important;

        background: rgba(255, 255, 255, .60) !important;

        box-shadow: 0 2px 8px rgba(20, 70, 70, .025) !important;

        transition:
            background .18s ease,
            border-color .18s ease,
            transform .18s ease !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__button:hover {
        color: #0D5050 !important;

        border-color: rgba(20, 93, 92, .45) !important;

        background: #FFFFFF !important;

        transform: translateY(-1px);
    }


    /* ======================================================
       DECORATION — ABSTRACT EDITORIAL PAPER
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero::before {
        content: "";

        position: absolute;
        z-index: 1;

        top: 50%;
        right: 82px;

        width: 154px;
        height: 108px;

        border: 1px solid rgba(20, 90, 88, .065);
        border-radius: 17px;

        background:
            linear-gradient(
                rgba(20, 90, 88, .065),
                rgba(20, 90, 88, .065)
            ) 25px 31px / 88px 1px no-repeat,

            linear-gradient(
                rgba(20, 90, 88, .052),
                rgba(20, 90, 88, .052)
            ) 25px 48px / 103px 1px no-repeat,

            linear-gradient(
                rgba(20, 90, 88, .042),
                rgba(20, 90, 88, .042)
            ) 25px 65px / 74px 1px no-repeat,

            rgba(255, 255, 255, .19);

        box-shadow:
            15px 13px 0 rgba(255, 255, 255, .17),
            15px 13px 0 1px rgba(20, 90, 88, .032);

        transform:
            translateY(-50%)
            rotate(-4deg);

        pointer-events: none;
    }


    /* Lingkaran dekoratif besar */

    body.rb-um-public-profile
    .rb-um-author-hero::after {
        content: "";

        position: absolute;
        z-index: 0;

        right: -100px;
        bottom: -170px;

        width: 355px;
        height: 355px;

        border: 1px solid rgba(218, 151, 45, .075);
        border-radius: 50%;

        box-shadow:
            0 0 0 43px rgba(218, 151, 45, .019),
            0 0 0 88px rgba(218, 151, 45, .012);

        pointer-events: none;
    }

}


/* Di desktop yang lebih sempit, dekorasi kanan disederhanakan
   agar tidak mendekati teks profil. */

@media (min-width: 1025px) and (max-width: 1179px) {

    body.rb-um-public-profile
    .rb-um-author-hero::before {
        display: none !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__content {
        max-width: 720px !important;
    }
}

/* END RB AUTHOR PROFILE — DESKTOP HERO PRECISION POLISH */


/* ==========================================================
   RB AUTHOR PROFILE — DESKTOP WRITINGS
   ========================================================== */

@media (min-width: 1025px) {

    /* ======================================================
       SECTION
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings {
        width: 100%;

        margin: 0 0 52px;
        padding: 0;

        box-sizing: border-box;
    }


    /* ======================================================
       HEADER
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;

        margin: 0 0 18px;
    }

    body.rb-um-public-profile
    .rb-author-writings__eyebrow {
        display: block;

        margin: 0 0 6px;

        color: #D98200;

        font-size: 10px;
        font-weight: 750;
        line-height: 1;
        letter-spacing: .08em;

        text-transform: uppercase;
    }

    body.rb-um-public-profile
    .rb-author-writings__title {
        margin: 0 !important;

        color: #191C1F !important;

        font-size: 25px !important;
        font-weight: 750 !important;
        line-height: 1.18 !important;
        letter-spacing: -.025em !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__total {
        flex: 0 0 auto;

        margin-bottom: 2px;

        color: #788084;

        font-size: 11.5px;
        font-weight: 600;
        line-height: 1;
    }


    /* ======================================================
       FILTER
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__filters {
        display: flex;
        flex-wrap: wrap;
        align-items: center;

        gap: 7px;

        margin: 0 0 22px;
        padding: 0;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        min-height: 34px;

        padding: 7px 14px;

        color: #5E676B;

        font-size: 11.5px;
        font-weight: 650;
        line-height: 1;

        text-decoration: none;

        border: 1px solid #E1E6E7;
        border-radius: 999px;

        background: #FFFFFF;

        transition:
            color .18s ease,
            border-color .18s ease,
            background .18s ease;

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter:hover {
        color: #155E60;

        border-color: #C7DBD9;

        background: #F7FAFA;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter.is-active {
        color: #FFFFFF;

        border-color: #147B79;

        background: #147B79;

        box-shadow: 0 5px 14px rgba(20, 123, 121, .12);
    }


    /* ======================================================
       GRID — 4 KOLOM
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__grid {
        display: grid;

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

        column-gap: 18px;
        row-gap: 34px;

        width: 100%;
    }


    /* ======================================================
       REUSED HOMEPAGE FEED CARD
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card {
        min-width: 0;
    }

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__media {
        display: block;

        width: 100%;
        aspect-ratio: 16 / 9;

        overflow: hidden;

        border-radius: 13px;

        background: #EEF1F1;
    }

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transition: transform .28s ease;
    }

    body.rb-um-public-profile
    .rb-author-writings
    .rb-feed-card__media:hover
    .rb-feed-card__image {
        transform: scale(1.025);
    }


    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__body {
        padding-top: 11px;
    }


    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__category {
        display: block;

        margin: 0 0 6px;

        color: #D98200;

        font-size: 9.5px;
        font-weight: 750;
        line-height: 1.15;
        letter-spacing: .035em;

        text-transform: uppercase;
    }


    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__title {
        display: -webkit-box;

        min-height: 46px;

        margin: 0;

        overflow: hidden;

        font-size: 15px;
        font-weight: 700;
        line-height: 1.35;
        letter-spacing: -.012em;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__title a {
        color: #191C1F;

        text-decoration: none;
    }

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__title a:hover {
        color: #155E60;
    }


    /* Author tidak perlu diulang pada halaman profilnya sendiri. */

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__author,

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__meta-separator {
        display: none;
    }


    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__meta {
        display: flex;
        align-items: center;

        margin-top: 7px;

        color: #7B8387;

        font-size: 10.5px;
        font-weight: 500;
        line-height: 1.2;
    }


    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__engagement {
        display: flex;
        align-items: center;

        gap: 11px;

        margin-top: 9px;
    }

    body.rb-um-public-profile
    .rb-author-writings .rb-feed-card__engagement-item {
        display: inline-flex;
        align-items: center;

        gap: 4px;

        color: #718083;

        font-size: 10px;
        font-weight: 600;
        line-height: 1;
    }

    body.rb-um-public-profile
    .rb-author-writings
    .rb-feed-card__engagement-item svg {
        width: 14px;
        height: 14px;

        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


    /* ======================================================
       PAGINATION
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__pagination {
        display: flex;
        justify-content: center;
        align-items: center;

        gap: 7px;

        margin-top: 38px;
    }

    body.rb-um-public-profile
    .rb-author-writings__page {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 34px;
        height: 34px;

        color: #626B6F;

        font-size: 11.5px;
        font-weight: 650;
        line-height: 1;

        text-decoration: none;

        border: 1px solid #DEE4E5;
        border-radius: 10px;

        background: #FFFFFF;

        box-sizing: border-box;
    }

    body.rb-um-public-profile
    .rb-author-writings__page:hover {
        color: #155E60;

        border-color: #BCD4D2;

        background: #F6FAFA;
    }

    body.rb-um-public-profile
    .rb-author-writings__page.is-active {
        color: #FFFFFF;

        border-color: #147B79;

        background: #147B79;
    }


    /* ======================================================
       EMPTY STATE
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__empty {
        padding: 34px;

        color: #70787C;

        font-size: 13px;
        text-align: center;

        border: 1px dashed #D7DEDF;
        border-radius: 16px;

        background: #FAFBFB;
    }

}

/* END RB AUTHOR PROFILE — DESKTOP WRITINGS */



/* ==========================================================
   AUTHOR PROFILE — SIMPLE WRITINGS HEADING
   ========================================================== */

@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-author-writings__header {
        display: block !important;
        margin-bottom: 14px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__title {
        margin: 0 !important;

        font-size: 24px !important;
        font-weight: 750 !important;
        line-height: 1.15 !important;
        letter-spacing: -.025em !important;
    }

}

/* END SIMPLE WRITINGS HEADING */


/* ==========================================================
   RB AUTHOR PROFILE — PENULIS LAINNYA DESKTOP FINAL
   Desktop only. Mobile/tablet tidak disentuh.
   ========================================================== */

@media (min-width: 1025px) {

    /* SECTION */
    body.rb-um-public-profile .rb-author-others {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 34px 0 52px !important;
        padding: 22px 24px 24px !important;

        border: 1px solid #E3E8E8 !important;
        border-radius: 18px !important;

        background:
            linear-gradient(
                135deg,
                #FFFFFF 0%,
                #FAFCFC 100%
            ) !important;

        box-shadow:
            0 8px 28px rgba(25, 55, 57, .035) !important;

        box-sizing: border-box !important;
    }


    /* HEADER */
    body.rb-um-public-profile .rb-author-others__header {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;

        width: 100% !important;

        margin: 0 0 16px !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile .rb-author-others__eyebrow {
        display: block !important;

        margin: 0 0 5px !important;

        color: #D98200 !important;

        font-size: 9px !important;
        font-weight: 750 !important;
        line-height: 1 !important;
        letter-spacing: .085em !important;

        text-transform: uppercase !important;
    }

    body.rb-um-public-profile .rb-author-others__title {
        margin: 0 !important;
        padding: 0 !important;

        color: #191C1F !important;

        font-size: 20px !important;
        font-weight: 750 !important;
        line-height: 1.15 !important;
        letter-spacing: -.022em !important;
    }


    /* GRID — 5 PENULIS */
    body.rb-um-public-profile .rb-author-others__grid {
        display: grid !important;

        grid-template-columns:
            repeat(5, minmax(0, 1fr)) !important;

        gap: 12px !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* CARD */
    body.rb-um-public-profile .rb-author-other {
        display: grid !important;

        grid-template-columns:
            54px minmax(0, 1fr) !important;

        align-items: center !important;

        gap: 11px !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 82px !important;

        margin: 0 !important;
        padding: 12px 13px !important;

        overflow: hidden !important;

        border: 1px solid #E3E8E8 !important;
        border-radius: 14px !important;

        background: #FFFFFF !important;

        box-shadow: none !important;

        transition:
            border-color .18s ease,
            box-shadow .18s ease,
            transform .18s ease !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile .rb-author-other:hover {
        border-color: #C9DAD8 !important;

        box-shadow:
            0 7px 20px rgba(26, 57, 59, .055) !important;

        transform: translateY(-2px) !important;
    }


    /* AVATAR */
    body.rb-um-public-profile .rb-author-other__avatar-link {
        display: block !important;

        width: 54px !important;
        height: 54px !important;

        margin: 0 !important;
        padding: 0 !important;

        text-decoration: none !important;
    }

    body.rb-um-public-profile .rb-author-other__avatar {
        display: block !important;

        width: 54px !important;
        height: 54px !important;

        min-width: 54px !important;
        max-width: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;
        object-position: center !important;

        border: 2px solid #FFFFFF !important;
        border-radius: 50% !important;

        box-shadow:
            0 0 0 1px #DDE5E5,
            0 4px 10px rgba(20, 60, 60, .06) !important;
    }


    /* CONTENT */
    body.rb-um-public-profile .rb-author-other__content {
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile .rb-author-other__name {
        display: block !important;

        margin: 0 0 3px !important;
        padding: 0 !important;

        overflow: hidden !important;

        color: #191C1F !important;

        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    body.rb-um-public-profile .rb-author-other__name:hover {
        color: #155E60 !important;
    }

    body.rb-um-public-profile .rb-author-other__count {
        display: block !important;

        margin: 0 0 7px !important;
        padding: 0 !important;

        color: #788084 !important;

        font-size: 9.5px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }

    body.rb-um-public-profile .rb-author-other__button {
        display: inline-flex !important;
        align-items: center !important;

        gap: 5px !important;

        margin: 0 !important;
        padding: 0 !important;

        color: #176664 !important;

        font-size: 9.5px !important;
        font-weight: 650 !important;
        line-height: 1 !important;

        text-decoration: none !important;
    }

    body.rb-um-public-profile .rb-author-other__button span {
        transition: transform .18s ease !important;
    }

    body.rb-um-public-profile .rb-author-other__button:hover span {
        transform: translateX(2px) !important;
    }

}

/* END RB AUTHOR PROFILE — PENULIS LAINNYA DESKTOP FINAL */


/* ==========================================================
   RB AUTHOR PROFILE — ALL AUTHORS LINK
   Desktop only. Mobile akan didesain kemudian.
   ========================================================== */

@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 6px !important;

        flex: 0 0 auto !important;

        min-height: 34px !important;

        margin: 0 !important;
        padding: 8px 12px !important;

        color: #155E60 !important;

        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        text-decoration: none !important;

        border: 1px solid #DCE5E5 !important;
        border-radius: 999px !important;

        background: #FFFFFF !important;

        transition:
            background .18s ease,
            border-color .18s ease,
            color .18s ease !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link:hover,
    body.rb-um-public-profile
    .rb-author-others__all-link:focus-visible {
        color: #094C4E !important;

        border-color: #C8DAD8 !important;

        background: #F2F8F7 !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link span {
        display: inline-block !important;

        transition: transform .18s ease !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link:hover span {
        transform: translateX(2px) !important;
    }
}


/* Untuk sementara jangan tampilkan tombol ini di mobile/tablet. */
@media (max-width: 1024px) {

    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: none !important;
    }
}

/* END RB AUTHOR PROFILE — ALL AUTHORS LINK */


/* ==========================================================
   RB AUTHOR PROFILE — ALL AUTHORS LINK
   Desktop only. Mobile akan didesain kemudian.
   ========================================================== */

@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 6px !important;

        flex: 0 0 auto !important;

        min-height: 34px !important;

        margin: 0 !important;
        padding: 8px 12px !important;

        color: #155E60 !important;

        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        text-decoration: none !important;

        border: 1px solid #DCE5E5 !important;
        border-radius: 999px !important;

        background: #FFFFFF !important;

        transition:
            background .18s ease,
            border-color .18s ease,
            color .18s ease !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link:hover,
    body.rb-um-public-profile
    .rb-author-others__all-link:focus-visible {
        color: #094C4E !important;

        border-color: #C8DAD8 !important;

        background: #F2F8F7 !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link span {
        display: inline-block !important;

        transition: transform .18s ease !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link:hover span {
        transform: translateX(2px) !important;
    }
}


/* Untuk sementara jangan tampilkan tombol ini di mobile/tablet. */
@media (max-width: 1024px) {

    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: none !important;
    }
}

/* END RB AUTHOR PROFILE — ALL AUTHORS LINK */

/* ==========================================================
   WORDPRESS AUTHOR PROFILE — MOBILE HERO FINAL
   ========================================================== */

@media (max-width: 767px) {

    body.author .rb-author-profile-hero {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;

        margin: 24px 0 28px !important;
        padding: 28px 20px !important;

        overflow: hidden !important;

        border: 1px solid #EADDBE !important;
        border-radius: 22px !important;

        background:
            linear-gradient(
                145deg,
                #FFF9EE 0%,
                #FFFCF6 62%,
                #FFF7E7 100%
            ) !important;

        box-sizing: border-box !important;
    }


    /* dekorasi lembut */
    body.author .rb-author-profile-hero::after {
        content: "" !important;

        position: absolute !important;
        top: -55px !important;
        right: -55px !important;
        bottom: auto !important;

        width: 160px !important;
        height: 160px !important;

        border: 1px solid rgba(217,130,0,.06) !important;
        border-radius: 50% !important;

        box-shadow:
            0 0 0 30px rgba(217,130,0,.016),
            0 0 0 60px rgba(217,130,0,.009) !important;

        pointer-events: none !important;
    }


    /* layout */
    body.author .rb-author-profile-hero__inner {
        position: relative !important;
        z-index: 2 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        gap: 0 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* avatar */
    body.author .rb-author-profile-hero__avatar-wrap {
        width: 92px !important;
        height: 92px !important;

        margin: 0 auto 14px !important;
        padding: 4px !important;

        border-radius: 50% !important;

        background: #FFFFFF !important;

        box-shadow:
            0 6px 16px rgba(20,50,52,.09),
            0 0 0 1px rgba(20,90,88,.07) !important;

        box-sizing: border-box !important;
    }

    body.author .rb-author-profile-hero__avatar {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        border-radius: 50% !important;
    }


    /* content */
    body.author .rb-author-profile-hero__content {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /* PROFIL PENULIS */
    body.author .rb-author-profile-hero__eyebrow {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;

        margin: 0 0 8px !important;

        color: #C7790A !important;

        font-size: 10px !important;
        font-weight: 750 !important;
        line-height: 1 !important;
        letter-spacing: .075em !important;

        text-transform: uppercase !important;
    }

    body.author .rb-author-profile-hero__eyebrow::before {
        content: "" !important;

        width: 5px !important;
        height: 5px !important;

        border-radius: 50% !important;

        background: #E6A139 !important;

        box-shadow:
            0 0 0 3px rgba(230,161,57,.12) !important;
    }


    /* nama + jumlah tulisan */
    body.author .rb-author-profile-hero__headline {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        gap: 6px !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.author .rb-author-profile-hero__name {
        width: 100% !important;

        margin: 0 !important;

        color: #191C1F !important;

        font-size: clamp(23px, 6.5vw, 27px) !important;
        font-weight: 750 !important;
        line-height: 1.1 !important;
        letter-spacing: -.025em !important;

        text-align: center !important;
    }

    body.author .rb-author-profile-hero__count {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 30px !important;

        margin: 0 !important;
        padding: 5px 12px !important;

        color: #145E5D !important;

        font-size: 11.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        border: 1px solid rgba(15,149,153,.10) !important;
        border-radius: 999px !important;

        background: #E7F3F1 !important;

        box-sizing: border-box !important;
    }

    body.author .rb-author-profile-hero__count::before {
        display: none !important;
    }


    /* bio */
    body.author .rb-author-profile-hero__bio {
        width: 100% !important;
        max-width: 330px !important;

        margin: 14px auto 0 !important;

        color: #5D6569 !important;

        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 1.48 !important;

        text-align: center !important;
    }


    /* website */
    body.author .rb-author-profile-hero__actions {
        display: flex !important;
        justify-content: center !important;

        margin: 14px 0 0 !important;
    }

    body.author .rb-author-profile-hero__button {
        min-height: 34px !important;

        padding: 7px 14px !important;

        font-size: 11px !important;

        border-radius: 999px !important;
    }

}

/* END WORDPRESS AUTHOR PROFILE — MOBILE HERO FINAL */

/* ==========================================================
   RB AUTHOR PROFILE — MOBILE FINAL SYSTEM
   Shell + Hero + Writings + Pagination + Other Authors
   ========================================================== */

@media (max-width: 767px) {

    /* ======================================================
       1. PAGE SHELL
       ====================================================== */

    body.rb-um-public-profile #primary,
    body.rb-um-public-profile .content-area,
    body.rb-um-public-profile .content-container.site-container,
    body.rb-um-public-profile #main.site-main,
    body.rb-um-public-profile .content-wrap,
    body.rb-um-public-profile article,
    body.rb-um-public-profile .entry-content-wrap,
    body.rb-um-public-profile .entry-content {
        width: 100% !important;
        max-width: none !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        box-sizing: border-box !important;
    }

    /* Hilangkan judul bawaan Kadence seperti "User". */
    body.rb-um-public-profile .entry-header,
    body.rb-um-public-profile .entry-hero,
    body.rb-um-public-profile .entry-hero-container,
    body.rb-um-public-profile .page-header {
        display: none !important;
    }

    /* Bersihkan wrapper Ultimate Member. */
    body.rb-um-public-profile .um,
    body.rb-um-public-profile .um-profile,
    body.rb-um-public-profile .um-profile-body {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }


    /* ======================================================
       2. HERO PROFIL
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        width: calc(100% - 40px) !important;
        max-width: none !important;

        min-height: 0 !important;

        margin: 24px 20px 0 !important;
        padding: 26px 18px 24px !important;

        overflow: hidden !important;

        border: 1px solid rgba(207, 185, 125, .42) !important;
        border-radius: 20px !important;

        background:
            linear-gradient(
                135deg,
                #FFFDF7 0%,
                #FFF9EC 100%
            ) !important;

        box-shadow:
            0 10px 28px rgba(30, 50, 50, .035) !important;

        text-align: center !important;

        box-sizing: border-box !important;
    }

    /* Dekorasi halus ala desktop. */
    body.rb-um-public-profile
    .rb-um-author-hero::before {
        content: "";

        position: absolute;
        top: -48px;
        right: -45px;

        width: 145px;
        height: 145px;

        border: 1px solid rgba(217,130,0,.065);
        border-radius: 50%;

        box-shadow:
            0 0 0 28px rgba(217,130,0,.014),
            0 0 0 55px rgba(217,130,0,.008);

        pointer-events: none;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__avatar-wrap {
        position: relative !important;
        z-index: 2 !important;

        width: 94px !important;
        height: 94px !important;

        flex: 0 0 94px !important;

        margin: 0 auto 15px !important;
        padding: 4px !important;

        border-radius: 50% !important;

        background: #FFFFFF !important;

        box-shadow:
            0 6px 18px rgba(20,50,52,.10),
            0 0 0 1px rgba(20,90,88,.07),
            0 0 0 4px rgba(255,255,255,.40) !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__avatar {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;
        object-position: center !important;

        border-radius: 50% !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__content {
        position: relative !important;
        z-index: 2 !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow {
        display: inline-flex !important;
        align-items: center !important;

        gap: 6px !important;

        margin: 0 0 9px !important;
        padding: 0 !important;

        color: #C47A13 !important;

        font-size: 10px !important;
        font-weight: 750 !important;
        line-height: 1 !important;
        letter-spacing: .08em !important;

        text-transform: uppercase !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow::before {
        content: "";

        width: 5px;
        height: 5px;

        border-radius: 50%;

        background: #E3A037;

        box-shadow: 0 0 0 3px rgba(227,160,55,.13);
    }

    body.rb-um-public-profile
    .rb-um-author-hero__headline {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        gap: 7px !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__name {
        width: 100% !important;

        margin: 0 !important;

        color: #191C1F !important;

        font-size: clamp(22px, 6.2vw, 27px) !important;
        font-weight: 750 !important;
        line-height: 1.12 !important;
        letter-spacing: -.025em !important;

        text-align: center !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__count {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 29px !important;

        margin: 0 !important;
        padding: 6px 12px !important;

        color: #145E5D !important;

        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        border: 1px solid rgba(20,94,93,.08) !important;
        border-radius: 999px !important;

        background: #E8F3F1 !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__bio {
        width: 100% !important;
        max-width: 330px !important;

        margin: 14px auto 0 !important;

        color: #60686C !important;

        font-size: 12.5px !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;

        text-align: center !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__actions {
        display: flex !important;
        justify-content: center !important;

        margin: 14px 0 0 !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__button {
        display: inline-flex !important;
        align-items: center !important;

        min-height: 34px !important;

        padding: 7px 13px !important;

        color: #155E60 !important;

        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        text-decoration: none !important;

        border: 1px solid #D5E1DF !important;
        border-radius: 999px !important;

        background: rgba(255,255,255,.65) !important;
    }


    /* ======================================================
       3. TULISAN TERBIT
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings {
        display: block !important;

        width: calc(100% - 40px) !important;

        margin: 24px 20px 34px !important;
        padding: 0 !important;

        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__header {
        margin: 0 0 10px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__title {
        margin: 0 !important;

        color: #191C1F !important;

        font-size: 19px !important;
        font-weight: 750 !important;
        line-height: 1.15 !important;
        letter-spacing: -.02em !important;
    }


    /* Filter kategori */
    body.rb-um-public-profile
    .rb-author-writings__filters {
        display: flex !important;
        flex-wrap: nowrap !important;

        gap: 6px !important;

        width: 100% !important;

        margin: 0 0 15px !important;
        padding: 0 0 2px !important;

        overflow-x: auto !important;

        scrollbar-width: none !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__filters::-webkit-scrollbar {
        display: none !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter {
        flex: 0 0 auto !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 30px !important;

        padding: 6px 11px !important;

        color: #697276 !important;

        font-size: 10px !important;
        font-weight: 650 !important;
        line-height: 1 !important;

        text-decoration: none !important;

        border: 1px solid #E0E6E6 !important;
        border-radius: 999px !important;

        background: #FFFFFF !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter.is-active {
        color: #155E60 !important;

        border-color: #D5E7E5 !important;

        background: #E8F4F2 !important;
    }


    /* Grid sama dengan bahasa visual homepage */
    body.rb-um-public-profile
    .rb-author-writings__grid {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        column-gap: 12px !important;
        row-gap: 24px !important;

        align-items: start !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card {
        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__media {
        display: block !important;

        width: 100% !important;

        aspect-ratio: 16 / 9 !important;

        overflow: hidden !important;

        border-radius: 12px !important;

        background: #EEF1F1 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__image {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        transform: none !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__body {
        height: auto !important;
        min-height: 0 !important;

        padding: 7px 0 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__category {
        margin: 0 0 3px !important;

        color: #D98200 !important;

        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__title {
        display: -webkit-box !important;

        min-height: 0 !important;

        margin: 0 !important;

        overflow: hidden !important;

        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.28 !important;

        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__meta {
        display: flex !important;
        align-items: center !important;

        gap: 4px !important;

        min-width: 0 !important;

        margin: 4px 0 0 !important;

        color: #737C80 !important;

        font-size: 9.5px !important;
        line-height: 1.2 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__author {
        max-width: 55% !important;

        overflow: hidden !important;

        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement {
        display: flex !important;
        align-items: center !important;

        gap: 10px !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 5px 0 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement-item {
        display: inline-flex !important;
        align-items: center !important;

        gap: 3px !important;

        width: auto !important;

        margin: 0 !important;

        color: rgba(9,76,78,.68) !important;

        font-size: 9.5px !important;
        line-height: 1 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement-item svg {
        width: 13px !important;
        height: 13px !important;
    }


    /* Pagination */
    body.rb-um-public-profile
    .rb-author-writings__pagination {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;

        gap: 6px !important;

        width: 100% !important;

        margin: 24px 0 0 !important;
        padding: 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__page {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 32px !important;
        height: 32px !important;

        padding: 0 !important;

        color: #596367 !important;

        font-size: 11px !important;
        font-weight: 700 !important;

        text-decoration: none !important;

        border: 1px solid #DDE5E5 !important;
        border-radius: 9px !important;

        background: #FFFFFF !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__page.is-active {
        color: #FFFFFF !important;

        border-color: #155E60 !important;

        background: #155E60 !important;
    }


    /* ======================================================
       4. PENULIS LAINNYA
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-others {
        display: block !important;

        width: calc(100% - 40px) !important;

        margin: 0 20px 34px !important;
        padding: 0 !important;

        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.rb-um-public-profile
    .rb-author-others__header {
        margin: 0 0 13px !important;
    }

    body.rb-um-public-profile
    .rb-author-others__eyebrow {
        display: block !important;

        margin: 0 0 4px !important;

        color: #D98200 !important;

        font-size: 9px !important;
        font-weight: 700 !important;
        letter-spacing: .075em !important;

        text-transform: uppercase !important;
    }

    body.rb-um-public-profile
    .rb-author-others__title {
        margin: 0 !important;

        color: #191C1F !important;

        font-size: 19px !important;
        font-weight: 750 !important;
        line-height: 1.15 !important;
    }

    body.rb-um-public-profile
    .rb-author-others__grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 9px !important;

        width: 100% !important;
    }

    body.rb-um-public-profile
    .rb-author-other {
        display: grid !important;

        grid-template-columns:
            52px minmax(0, 1fr) !important;

        align-items: center !important;

        gap: 12px !important;

        width: 100% !important;
        min-width: 0 !important;

        min-height: 76px !important;

        margin: 0 !important;
        padding: 11px 13px !important;

        border: 1px solid #E2E7E7 !important;
        border-radius: 14px !important;

        background: #FFFFFF !important;

        box-shadow: none !important;
        transform: none !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-author-other__avatar-link {
        display: block !important;

        width: 52px !important;
        height: 52px !important;
    }

    body.rb-um-public-profile
    .rb-author-other__avatar {
        display: block !important;

        width: 52px !important;
        height: 52px !important;

        max-width: 52px !important;

        object-fit: cover !important;
        object-position: center !important;

        border: 2px solid #FFFFFF !important;
        border-radius: 50% !important;

        box-shadow:
            0 0 0 1px #DEE5E5,
            0 3px 8px rgba(20,60,60,.05) !important;
    }

    body.rb-um-public-profile
    .rb-author-other__content {
        min-width: 0 !important;
    }

    body.rb-um-public-profile
    .rb-author-other__name {
        display: block !important;

        margin: 0 0 3px !important;

        overflow: hidden !important;

        color: #191C1F !important;

        font-size: 12.5px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
        text-overflow: ellipsis !important;
    }

    body.rb-um-public-profile
    .rb-author-other__count {
        display: block !important;

        margin: 0 0 6px !important;

        color: #788084 !important;

        font-size: 9.5px !important;
        line-height: 1.2 !important;
    }

    body.rb-um-public-profile
    .rb-author-other__button {
        display: inline-flex !important;
        align-items: center !important;

        gap: 4px !important;

        color: #176664 !important;

        font-size: 9.5px !important;
        font-weight: 650 !important;

        text-decoration: none !important;
    }

}

/* END RB AUTHOR PROFILE — MOBILE FINAL SYSTEM */



/* ==========================================================
   RB AUTHOR PROFILE — MOBILE ALL AUTHORS LINK FINAL
   ========================================================== */

@media (max-width: 767px) {

    /* Header Penulis Lainnya */
    body.rb-um-public-profile
    .rb-author-others__header {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;

        gap: 10px !important;

        width: 100% !important;

        margin: 0 0 14px !important;
        padding: 0 !important;
    }

    /* Tombol yang sebelumnya disembunyikan di <=1024px */
    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        flex: 0 0 auto !important;

        min-height: 30px !important;

        margin: 0 !important;
        padding: 6px 10px !important;

        color: #155E60 !important;

        font-size: 9.5px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        white-space: nowrap !important;
        text-decoration: none !important;

        border: 1px solid #D9E4E3 !important;
        border-radius: 999px !important;

        background: #FFFFFF !important;

        box-sizing: border-box !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link span {
        display: inline-block !important;
    }

    body.rb-um-public-profile
    .rb-author-others__all-link:active {
        background: #F1F7F6 !important;
    }


    /* Sedikit beri napas antar kartu penulis */
    body.rb-um-public-profile
    .rb-author-others__grid {
        gap: 11px !important;
    }


    /* Teks sekunder sedikit lebih terbaca */
    body.rb-um-public-profile
    .rb-author-other__count {
        color: #687276 !important;
    }

}

/* END RB AUTHOR PROFILE — MOBILE ALL AUTHORS LINK FINAL */

/* ==========================================================
   RB AUTHOR PROFILE — MOBILE MICRO POLISH FINAL
   Tidak mengubah struktur, hanya visual finishing.
   ========================================================== */

@media (max-width: 767px) {

    /* ======================================================
       1. HERO PROFIL
       ====================================================== */

    body.rb-um-public-profile
    .rb-um-author-hero {
        margin-top: 24px !important;

        padding-top: 26px !important;
        padding-bottom: 25px !important;

        border-radius: 20px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__avatar-wrap {
        width: 92px !important;
        height: 92px !important;

        flex-basis: 92px !important;

        margin-bottom: 14px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow {
        margin-bottom: 9px !important;

        font-size: 9.5px !important;
        letter-spacing: .085em !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__headline {
        gap: 7px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__name {
        font-size: clamp(23px, 6.2vw, 27px) !important;
        line-height: 1.1 !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__count {
        min-height: 29px !important;

        padding: 6px 12px !important;

        font-size: 11px !important;
    }

    body.rb-um-public-profile
    .rb-um-author-hero__bio {
        max-width: 335px !important;

        margin-top: 13px !important;

        color: #596267 !important;

        font-size: 12.75px !important;
        line-height: 1.52 !important;
    }


    /* ======================================================
       2. TULISAN TERBIT
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings {
        margin-top: 28px !important;
        margin-bottom: 34px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__header {
        margin-bottom: 11px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__title {
        font-size: 20px !important;
        line-height: 1.15 !important;
        letter-spacing: -.022em !important;
    }


    /* Filter lebih bersih */
    body.rb-um-public-profile
    .rb-author-writings__filters {
        gap: 6px !important;

        margin-bottom: 16px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__filter {
        min-height: 30px !important;

        padding: 6px 11px !important;

        font-size: 10px !important;
    }


    /* Grid */
    body.rb-um-public-profile
    .rb-author-writings__grid {
        column-gap: 12px !important;
        row-gap: 29px !important;
    }


    /* Thumbnail */
    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__media {
        border-radius: 12px !important;
    }


    /* Isi kartu */
    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__body {
        padding-top: 8px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__category {
        margin-bottom: 4px !important;

        font-size: 9.5px !important;
        line-height: 1.1 !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__title {
        font-size: 13.75px !important;
        line-height: 1.28 !important;

        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
    }


    /* Meta lebih terbaca */
    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__meta {
        gap: 4px !important;

        margin-top: 5px !important;

        color: #626B70 !important;

        font-size: 9.75px !important;
        line-height: 1.25 !important;
    }


    /* Like + komentar */
    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement {
        gap: 11px !important;

        margin-top: 6px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement-item {
        gap: 4px !important;

        font-size: 10px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__engagement-item svg {
        width: 13.5px !important;
        height: 13.5px !important;
    }


    /* ======================================================
       3. PAGINATION
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-writings__pagination {
        gap: 7px !important;

        margin-top: 27px !important;
    }

    body.rb-um-public-profile
    .rb-author-writings__page {
        width: 31px !important;
        height: 31px !important;

        border-radius: 999px !important;

        font-size: 10.5px !important;
    }


    /* ======================================================
       4. PENULIS LAINNYA
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-others {
        margin-bottom: 38px !important;
    }


    /* Header kiri + tombol kanan */
    body.rb-um-public-profile
    .rb-author-others__header {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;

        gap: 10px !important;

        margin-bottom: 14px !important;
    }

    body.rb-um-public-profile
    .rb-author-others__eyebrow {
        margin-bottom: 5px !important;

        font-size: 9px !important;
        letter-spacing: .085em !important;
    }

    body.rb-um-public-profile
    .rb-author-others__title {
        font-size: 20px !important;
        line-height: 1.1 !important;
        letter-spacing: -.02em !important;
    }


    /* Aktifkan Lihat Semua Penulis di mobile */
    body.rb-um-public-profile
    .rb-author-others__all-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 4px !important;

        flex: 0 0 auto !important;

        min-height: 28px !important;

        margin: 0 !important;
        padding: 6px 9px !important;

        color: #155E60 !important;

        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 1 !important;

        white-space: nowrap !important;
        text-decoration: none !important;

        border: 1px solid #D9E4E3 !important;
        border-radius: 999px !important;

        background: #FFFFFF !important;
    }


    /* Grid penulis */
    body.rb-um-public-profile
    .rb-author-others__grid {
        gap: 10px !important;
    }


    /* Kartu */
    body.rb-um-public-profile
    .rb-author-other {
        grid-template-columns:
            50px minmax(0, 1fr) !important;

        gap: 12px !important;

        min-height: 76px !important;

        padding: 11px 13px !important;

        border-radius: 14px !important;

        box-shadow:
            0 3px 10px rgba(25,55,57,.025) !important;
    }


    /* Avatar */
    body.rb-um-public-profile
    .rb-author-other__avatar-link {
        width: 50px !important;
        height: 50px !important;
    }

    body.rb-um-public-profile
    .rb-author-other__avatar {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
    }


    /* Nama */
    body.rb-um-public-profile
    .rb-author-other__name {
        margin-bottom: 4px !important;

        font-size: 12.75px !important;
        line-height: 1.2 !important;
    }


    /* Jumlah tulisan */
    body.rb-um-public-profile
    .rb-author-other__count {
        margin-bottom: 7px !important;

        color: #697276 !important;

        font-size: 9.75px !important;
    }


    /* Lihat profil */
    body.rb-um-public-profile
    .rb-author-other__button {
        gap: 4px !important;

        font-size: 9.75px !important;
    }


    /* ======================================================
       5. TRANSISI KE FOOTER
       ====================================================== */

    body.rb-um-public-profile
    .rb-author-others {
        padding-bottom: 4px !important;
    }

}

/* END RB AUTHOR PROFILE — MOBILE MICRO POLISH FINAL */



/* ==========================================================
   RB AUTHOR PROFILE — MOBILE HERO TOP SPACING FINAL
   ========================================================== */

@media (max-width: 767px) {

    /*
     * Hilangkan ruang vertikal bawaan Kadence / UM
     * sebelum custom author hero.
     */
    body.rb-um-public-profile #primary,
    body.rb-um-public-profile .content-area,
    body.rb-um-public-profile .content-container.site-container,
    body.rb-um-public-profile #main.site-main,
    body.rb-um-public-profile .content-wrap,
    body.rb-um-public-profile article,
    body.rb-um-public-profile .entry-content-wrap,
    body.rb-um-public-profile .entry-content,
    body.rb-um-public-profile .um,
    body.rb-um-public-profile .um-profile,
    body.rb-um-public-profile .um-profile-body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /*
     * Jarak final header -> hero.
     * Hero lainnya tidak diubah.
     */
    body.rb-um-public-profile
    .rb-um-author-hero {
        margin-top: 18px !important;
    }

}

/* END RB AUTHOR PROFILE — MOBILE HERO TOP SPACING FINAL */

/* ==========================================================
   AUTHOR PROFILE — ENGAGEMENT ICONS FINAL
   ========================================================== */

body.rb-um-public-profile
.rb-author-writings__grid
.rb-feed-card__engagement-item {
    color: #687078 !important;
}

body.rb-um-public-profile
.rb-author-writings__grid
.rb-feed-card__engagement-item svg {
    display: block !important;

    flex: 0 0 auto !important;

    width: 13.5px !important;
    height: 13.5px !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

body.rb-um-public-profile
.rb-author-writings__grid
.rb-feed-card__engagement-item svg path {
    fill: none !important;
    stroke: currentColor !important;
}

/* END AUTHOR PROFILE — ENGAGEMENT ICONS FINAL */

/* ==========================================================
   AUTHOR PROFILE — CARD META ALIGNMENT FINAL
   Equal title space keeps metadata + engagement aligned.
   ========================================================== */

/* Desktop — reserve exactly two title lines */
@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__title {
        min-height: 2.6em !important;
    }

}


/* Mobile — reserve exactly three title lines */
@media (max-width: 767px) {

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__title {
        min-height: 3.84em !important;
    }

}

/* END AUTHOR PROFILE — CARD META ALIGNMENT FINAL */


/* ==========================================================
   AUTHOR PROFILE — MOBILE TITLE 2 LINES FINAL
   ========================================================== */

@media (max-width: 767px) {

    body.rb-um-public-profile
    .rb-author-writings__grid
    .rb-feed-card__title {
        min-height: 2.56em !important;

        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

}

/* END AUTHOR PROFILE — MOBILE TITLE 2 LINES FINAL */


/* ==========================================================
   AUTHOR PROFILE DESKTOP HERO BALANCE V1

   Fine-tuning hero profil publik desktop.
   Tidak mengubah mobile, markup, atau section lain.
   ========================================================== */

@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-um-author-hero {
        grid-template-columns:
            164px minmax(0, 1fr) !important;

        column-gap: 34px !important;

        margin:
            26px 0 32px !important;

        padding:
            30px 38px !important;

        min-height:
            224px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__avatar-wrap {
        width: 164px !important;
        height: 164px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__content {
        max-width:
            720px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__eyebrow {
        margin:
            0 0 9px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__headline {
        gap:
            11px !important;

        margin:
            0 0 12px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__name {
        font-size:
            clamp(31px, 2.5vw, 36px) !important;

        line-height:
            1.07 !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__count {
        min-height:
            27px !important;

        padding:
            6px 11px !important;
    }


    body.rb-um-public-profile
    .rb-um-author-hero__bio {
        max-width:
            680px !important;

        font-size:
            14.25px !important;

        line-height:
            1.62 !important;
    }

}

/* END AUTHOR PROFILE DESKTOP HERO BALANCE V1 */


/* ==========================================================
   AUTHOR PROFILE — OTHERS BOTTOM SPACE DESKTOP V1

   Pertahankan panel putih Penulis Lainnya.
   Tambahkan ruang setelah kartu sebelum ujung bawah section.
   ========================================================== */

@media (min-width: 1025px) {

    body.rb-um-public-profile
    .rb-author-others {
        padding-bottom: 18px !important;
    }

}

/* END AUTHOR PROFILE — OTHERS BOTTOM SPACE DESKTOP V1 */


/* ==========================================================
   AUTHOR OTHERS DESKTOP BOTTOM BREATH V2

   Memberi ruang napas yang nyata antara baris kartu
   Penulis Lainnya dan batas bawah panel putih.
   ========================================================== */

@media (min-width: 1025px) {

    html body.rb-um-public-profile
    .rb-author-others {
        padding-bottom: 24px !important;
        box-sizing: border-box !important;
    }

    html body.rb-um-public-profile
    .rb-author-others__grid {
        margin-bottom: 0 !important;
    }

}

/* END AUTHOR OTHERS DESKTOP BOTTOM BREATH V2 */


/* ==========================================================
   AUTHOR OTHERS MOBILE BOTTOM BREATH V1

   Memberi ruang napas antara kartu terakhir Penulis Lainnya
   dan batas bawah panel putih pada mobile.
   Desktop tidak berubah.
   ========================================================== */

@media (max-width: 767px) {

    html body.rb-um-public-profile
    .rb-author-others {
        padding-bottom: 22px !important;
        box-sizing: border-box !important;
    }

    html body.rb-um-public-profile
    .rb-author-others__grid {
        margin-bottom: 0 !important;
    }

}

/* END AUTHOR OTHERS MOBILE BOTTOM BREATH V1 */


/* ==========================================================
   AUTHOR OTHERS MOBILE BOTTOM BREATH V2

   Samakan karakter ruang napas bawah dengan section
   Penulis Paling Produktif di homepage.
   ========================================================== */

@media (max-width: 767px) {

    html body.rb-um-public-profile
    .rb-author-others {
        padding-bottom: 28px !important;
    }

}

/* END AUTHOR OTHERS MOBILE BOTTOM BREATH V2 */
