/* =========================================================
   HARIMAU TV - PREMIUM ANALYSIS BOARD
   Desktop / Standard Article List
   ========================================================= */

body #wrapper {
    width: 100%;
}

body #container_wr {
    width: 100%;
    max-width: none;
}

body #container {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

#container_title {
    display: none;
}


/* BOARD */

.harimau-premium-board {
    width: calc(100% - 40px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 0 80px;
    box-sizing: border-box;
}


/* HERO */

.harimau-premium-hero {
    position: relative;
    padding: 38px 42px;
    margin-bottom: 28px;
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
}

.harimau-premium-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #ffcc00;
}

.harimau-premium-kicker {
    display: block;
    margin-bottom: 10px;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.harimau-premium-title {
    margin: 0 0 12px;
    padding: 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
}

.harimau-premium-intro {
    max-width: 820px;
    margin: 0;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.75;
}


/* WRITE */

.harimau-premium-top-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.harimau-premium-write {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    background: #111111;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
}


/* LIST */

.harimau-premium-list {
    border-top: 2px solid #111111;
}

.harimau-premium-item {
    border-bottom: 1px solid #e7e7e7;
    background: #ffffff;
}

.harimau-premium-item-link {
    display: flex;
    width: 100%;
    min-height: 108px;
    padding: 22px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-sizing: border-box;
    color: inherit !important;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.harimau-premium-item-link:hover {
    background: #fffbee;
}

.harimau-premium-item-main {
    min-width: 0;
    flex: 1;
}

.harimau-premium-item-label {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 8px;
    background: #fff6c7;
    border-radius: 5px;
    color: #806500;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.harimau-premium-item-title {
    margin: 0;
    padding: 0;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
}

.harimau-premium-item-meta {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 18px;
}

.harimau-premium-item-date {
    color: #999999;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.harimau-premium-item-arrow {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: #111111;
    border-radius: 50%;
    color: #ffcc00;
    font-size: 19px;
    font-weight: 900;
    transition: background 0.2s ease, color 0.2s ease;
}

.harimau-premium-item-link:hover .harimau-premium-item-arrow {
    background: #ffcc00;
    color: #111111;
}


/* EMPTY */

.harimau-premium-empty {
    padding: 70px 30px;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
}

.harimau-premium-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 19px;
    font-weight: 900;
}

.harimau-premium-empty p {
    margin: 0;
    color: #888888;
    font-size: 13px;
}


/* PAGINATION */

.harimau-premium-pagination {
    margin-top: 34px;
    text-align: center;
}


/* TABLET */

@media (max-width: 800px) {

    .harimau-premium-item-link {
        gap: 18px;
    }

    .harimau-premium-item-title {
        font-size: 18px;
    }

}


/* SMALL */

@media (max-width: 700px) {

    .harimau-premium-board {
        width: calc(100% - 28px);
        padding-top: 22px;
    }

    .harimau-premium-hero {
        padding: 28px 24px;
    }

    .harimau-premium-title {
        font-size: 30px;
    }

    .harimau-premium-item-link {
        min-height: auto;
        padding: 18px 16px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .harimau-premium-item-meta {
        width: 100%;
        justify-content: space-between;
    }

}
/* =========================================================
   HARIMAU TV - PREMIUM ANALYSIS VIEW
   ========================================================= */

.harimau-premium-view {
    width: calc(100% - 40px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 0 80px;
    box-sizing: border-box;
}


/* HEADER */

.harimau-premium-view-header {
    position: relative;
    padding: 38px 42px;
    margin-bottom: 28px;
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
}

.harimau-premium-view-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #ffcc00;
}

.harimau-premium-view-kicker {
    display: block;
    margin-bottom: 10px;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.harimau-premium-view-title {
    margin: 0 0 12px;
    padding: 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.3;
}

.harimau-premium-view-subtitle {
    margin: 0;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.7;
}


/* MAIN ARTICLE */

.harimau-premium-view-main {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.harimau-premium-view-content {
    padding: 42px 46px;
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.85;
    box-sizing: border-box;
    overflow-wrap: break-word;
}


/* GENERAL ARTICLE ELEMENTS */

.harimau-premium-view-content h1 {
    margin-top: 0;
    line-height: 1.4;
}

.harimau-premium-view-content h2 {
    line-height: 1.5;
}

.harimau-premium-view-content h3 {
    line-height: 1.5;
}

.harimau-premium-view-content p {
    line-height: 1.85;
}

.harimau-premium-view-content ul,
.harimau-premium-view-content ol {
    box-sizing: border-box;
}

.harimau-premium-view-content li {
    margin-bottom: 8px;
}

.harimau-premium-view-content img {
    max-width: 100%;
    height: auto;
}

.harimau-premium-view-content iframe {
    max-width: 100%;
}

.harimau-premium-view-content table {
    max-width: 100%;
}


/* LINKS */

.harimau-premium-view-content a {
    font-weight: 800;
    text-underline-offset: 3px;
}


/* NOTE */

.harimau-premium-view-note {
    max-width: 1000px;
    margin: 28px auto 0;
    padding: 24px 28px;
    border-left: 6px solid #ffcc00;
    background: #f7f7f7;
    box-sizing: border-box;
}

.harimau-premium-view-note strong {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 17px;
    font-weight: 900;
}

.harimau-premium-view-note p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.75;
}


/* ACTIONS */

.harimau-premium-view-actions {
    display: flex;
    max-width: 1000px;
    margin: 28px auto 0;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.harimau-premium-view-back {
    display: inline-flex;
    min-height: 48px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    background: #111111;
    border-radius: 8px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
}

.harimau-premium-view-admin {
    display: flex;
    gap: 8px;
}

.harimau-premium-admin-button {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    color: #111111 !important;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none !important;
}

.harimau-premium-delete {
    border-color: #111111;
}


/* MOBILE SAFETY */

@media (max-width: 700px) {

    .harimau-premium-view {
        width: calc(100% - 28px);
        padding-top: 22px;
    }

    .harimau-premium-view-header {
        padding: 28px 24px;
    }

    .harimau-premium-view-title {
        font-size: 28px;
    }

    .harimau-premium-view-content {
        padding: 26px 20px;
        font-size: 14px;
    }

    .harimau-premium-view-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .harimau-premium-view-back {
        width: 100%;
        box-sizing: border-box;
    }

    .harimau-premium-view-admin {
        width: 100%;
    }

    .harimau-premium-admin-button {
        flex: 1;
    }

}
