:root {
    --bg-primary: #cf9903;
    --bg-orange: #fa5901;
    --bg-red: #ce0b35;
    --bg-green: #118635;
    --bg-text: #222;
    --bg-muted: #777;
    --bg-border: #e9e9e9;
    --bg-surface: #fff;
    --bg-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    --bg-shadow-hover: 0 14px 32px rgba(0, 0, 0, .14);
    --bg-radius: 10px;
    --bg-transition: .25s ease;
}

html {
    scroll-behavior: smooth;
}

.home-banner {
    max-width: 970px;
    width: 100%;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: var(--bg-radius);
}

.home-section-title,
.home-directory-title,
.home-event-title,
.home-article-title {
    position: relative;
    margin: 0 0 8px;
    padding: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .2px;
}

.home-section-title::after,
.home-directory-title::after,
.home-event-title::after,
.home-article-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 9px;
    border-radius: 99px;
}

.home-section-title {
    color: var(--bg-primary);
}

.home-section-title::after {
    background: var(--bg-primary);
}

.home-directory-title {
    color: var(--bg-orange);
}

.home-directory-title::after {
    background: var(--bg-orange);
}

.home-event-title {
    color: var(--bg-red);
}

.home-event-title::after {
    background: var(--bg-red);
}

.home-article-title {
    color: var(--bg-green);
}

.home-article-title::after {
    background: var(--bg-green);
}

.home-directory-subtitle,
.home-event-subtitle,
.home-article-subtitle {
    margin: 0 0 20px;
    color: var(--bg-muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.65;
}

/* Card umum */
.promo-card,
.home-directory-card,
.home-event-card,
.home-article-card {
    border: 1px solid var(--bg-border);
    border-radius: var(--bg-radius);
    background: var(--bg-surface);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition:
        transform var(--bg-transition),
        box-shadow var(--bg-transition),
        border-color var(--bg-transition);
}

.promo-card:hover,
.home-directory-card:hover,
.home-event-card:hover,
.home-article-card:hover {
    transform: translateY(-5px);
    border-color: #ddd;
    box-shadow: var(--bg-shadow-hover);
}

/* Gambar */
.promo-image,
.home-directory-image,
.home-event-image,
.home-article-image {
    overflow: hidden;
    background: #fafafa;
}

.promo-image img,
.home-directory-image img,
.home-event-image img,
.home-article-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.promo-card:hover img,
.home-directory-card:hover img,
.home-event-card:hover img,
.home-article-card:hover img {
    transform: scale(1.04);
}

/* Link */
.promo-card a,
.home-directory-card a,
.home-event-card a,
.home-article-card a {
    outline: none;
    text-decoration: none;
}

/* Fokus keyboard */
.promo-card a:focus-visible,
.home-directory-card a:focus-visible,
.home-event-card a:focus-visible,
.home-article-card a:focus-visible {
    outline: 2px solid var(--bg-primary);
    outline-offset: 3px;
}

/* Tombol */
.home-directory-more a,
.home-event-more a,
.home-article-more a {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition:
        background var(--bg-transition),
        color var(--bg-transition),
        transform var(--bg-transition),
        box-shadow var(--bg-transition);
}

.home-directory-more a:hover,
.home-event-more a:hover,
.home-article-more a:hover {
    transform: translateY(-2px);
}

/* Footer */
.bg-footer {
    margin-top: 20px !important;
}

@media screen and (max-width: 700px) {
    .home-banner {
        margin-bottom: 24px;
        border-radius: 0;
    }

    .home-section-title,
    .home-directory-title,
    .home-event-title,
    .home-article-title {
        font-size: 21px !important;
    }

    .promo-card,
    .home-directory-card,
    .home-event-card,
    .home-article-card {
        max-width: 100%;
        transform: none !important;
    }

    .promo-card:hover,
    .home-directory-card:hover,
    .home-event-card:hover,
    .home-article-card:hover {
        transform: none !important;
    }
}

.home-banner {
    width: 970px;
    padding-bottom: 30px;
}

.home-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.promo-section-title {
    color: #cf9903;
}

.promo-wrapper {
    width: 970px;
    border-collapse: separate;
    border-spacing: 0;
}

.promo-wrapper > tbody > tr > td {
    width: 300px;
    padding: 0 0 35px 0;
    vertical-align: top;
}

.promo-wrapper > tbody > tr > td:nth-child(1) {
    padding-right: 25px;
}

.promo-wrapper > tbody > tr > td:nth-child(2) {
    padding-right: 25px;
}

.promo-card {
    width: 300px;
    background: #fff;
    overflow: hidden;

    border: 1px solid #eeeeee;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

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

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}

.promo-image {
    width: 300px;
    height: 205px;

    overflow: hidden;

    background: #fff;
}

.promo-image img {
    display: block;

    width: 300px;
    height: 205px;

    object-fit: contain;
    object-position: center;

    transition:
        transform .35s ease;
}

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

.promo-title {
    height: 65px;

    padding: 12px 12px 8px 12px;

    background: #fff;

    box-sizing: border-box;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;

    color: #333;

    line-height: 20px;

    transition:
        color .2s ease;
}

.promo-card:hover .promo-title {
    color: #fa5901;
}

.promo-view {
    height: 50px;

    padding: 8px 12px;

    background: #fff;

    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.promo-view a {
    color: #666;

    text-decoration: none;

    transition:
        color .2s ease;
}

.promo-view a:hover {
    color: #fa5901;

    text-decoration: underline;
}

.promo-view img {
    vertical-align: middle;

    margin-left: 5px;

    transition:
        transform .2s ease;
}

.promo-card:hover .promo-view img {
    transform: translateX(4px);
}

.promo-border-1 {
    border-bottom: #ce0b35 5px solid;
}

.promo-border-2 {
    border-bottom: #cf9903 5px solid;
}

.promo-border-3 {
    border-bottom: #0079c3 5px solid;
}

.promo-image a {
    display: block;
}

@media screen and (max-width: 700px) {

    .home-banner,
    .promo-wrapper {
        width: 100%;
    }

    .promo-wrapper > tbody > tr > td {
        display: block;

        width: 100%;

        padding: 0 0 25px 0 !important;
    }

    .promo-card {
        width: 100%;
        max-width: 300px;

        margin: 0 auto;
    }

    .promo-image {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }

    .promo-image img {
        width: 100%;
        max-width: 300px;
    }

    .home-section-title {
        font-size: 21px;
    }

}

.home-directory-section {
    width: 970px;
    padding-top: 10px;
    padding-bottom: 35px;
}

.home-directory-title {
    color: #fa5901;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.home-directory-subtitle {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    padding-bottom: 20px;
}

.home-directory-wrapper {
    width: 970px;
    border-collapse: separate;
    border-spacing: 0;
}

.home-directory-wrapper > tbody > tr > td {
    width: 232px;
    padding: 0 8px 25px 0;
    vertical-align: top;
}

.home-directory-wrapper > tbody > tr > td:last-child {
    padding-right: 0;
}

.home-directory-card {
    width: 232px;
    background: #fff;

    border: 1px solid #e5e5e5;

    box-sizing: border-box;
    overflow: hidden;

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

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

    border-color: #fa5901;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}

.home-directory-image {
    width: 230px;
    height: 170px;

    background: #fff;

    overflow: hidden;

    position: relative;
}

.home-directory-image img {
    display: block;

    width: 230px;
    height: 170px;

    object-fit: contain;
    object-position: center;

    transition:
        transform .35s ease;
}

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

.home-directory-border-1 {
    border-bottom: #cf9903 5px solid;
}

.home-directory-border-2 {
    border-bottom: #118635 5px solid;
}

.home-directory-border-3 {
    border-bottom: #ce0b35 5px solid;
}

.home-directory-border-4 {
    border-bottom: #0079c3 5px solid;
}

.home-directory-info {
    padding: 12px;

    background: #fff;

    box-sizing: border-box;
}

.home-directory-name {
    height: 40px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;

    color: #333;

    line-height: 20px;

    transition:
        color .2s ease;
}

.home-directory-card:hover
.home-directory-name {
    color: #fa5901;
}

.home-directory-location {
    padding-top: 6px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    color: #777;

    line-height: 18px;
}

.home-directory-view {
    padding-top: 10px;

    text-align: right;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.home-directory-view a {
    color: #666;

    text-decoration: none;

    transition:
        color .2s ease;
}

.home-directory-view a:hover {
    color: #fa5901;

    text-decoration: underline;
}

.home-directory-view img {
    vertical-align: middle;

    margin-left: 4px;

    transition:
        transform .2s ease;
}

.home-directory-card:hover
.home-directory-view img {
    transform: translateX(4px);
}

.home-directory-more {
    padding-top: 5px;

    text-align: center;
}

.home-directory-more a {
    display: inline-block;

    padding: 11px 25px;

    background: #fa5901;

    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;

    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #fa5901;

    transition:
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.home-directory-more a:hover {
    background: #fff;

    color: #fa5901;

    box-shadow:
        0 4px 10px rgba(0,0,0,.15);
}

@media screen and (max-width: 700px) {

    .home-directory-section,
    .home-directory-wrapper {
        width: 100%;
    }

    .home-directory-wrapper > tbody > tr > td {
        display: block;

        width: 100%;

        padding: 0 0 20px 0 !important;
    }

    .home-directory-card {
        width: 100%;
        max-width: 300px;

        margin: 0 auto;
    }

    .home-directory-image {
        width: 100%;
        max-width: 300px;
    }

    .home-directory-image img {
        width: 100%;
        max-width: 300px;
    }

}

.promo-wrapper,
.directory-wrapper,
.home-event-wrapper,
.home-article-wrapper {
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

.promo-section-title,
.directory-section-title,
.home-event-title,
.home-article-title {
    position: relative;

    padding-bottom: 10px !important;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px !important;
    font-weight: bold;

    line-height: 30px;

    text-transform: uppercase;
}

/* garis aksen di bawah judul */

.promo-section-title:after,
.directory-section-title:after,
.home-event-title:after,
.home-article-title:after {
    content: "";

    display: block;

    width: 38px;
    height: 3px;

    margin-top: 7px;

    background: #fa5901;
}

.home-event-subtitle,
.home-article-subtitle {
    color: #777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 18px;

    padding-bottom: 18px !important;
}

.promo-section,
.directory-section,
.home-event-section,
.home-article-section {
    margin: 0;
}

.promo-card,
.directory-store-card,
.home-event-card,
.home-article-card {
    position: relative;

    box-sizing: border-box;

    background: #fff;

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

.promo-card:hover,
.directory-store-card:hover,
.home-event-card:hover,
.home-article-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.16);

    z-index: 2;
}

.promo-image,
.home-event-image,
.home-article-image {
    overflow: hidden;
}

/* gambar */

.promo-image img,
.home-event-image img,
.home-article-image img {
    display: block;

    transition:
        transform .3s ease;
}

/* zoom */

.promo-card:hover .promo-image img,
.home-event-card:hover .home-event-image img,
.home-article-card:hover .home-article-image img {
    transform: scale(1.04);
}

.promo-title,
.home-event-name,
.home-article-name,
.store-name {
    font-family: Arial, Helvetica, sans-serif;

    transition:
        color .2s ease;
}

/* hover judul */

.promo-card:hover .promo-title,
.home-event-card:hover .home-event-name,
.home-article-card:hover .home-article-name,
.directory-store-card:hover .store-name {
    color: #fa5901 !important;
}

.promo-view a,
.home-event-view a,
.home-article-view a {
    color: #555;

    text-decoration: none;

    transition:
        color .2s ease;
}

.promo-card:hover .promo-view a,
.home-event-card:hover .home-event-view a,
.home-article-card:hover .home-article-view a {
    color: #fa5901;

    text-decoration: underline;
}

.promo-view img,
.home-event-view img,
.home-article-view img {
    transition:
        transform .2s ease;
}

.promo-card:hover .promo-view img,
.home-event-card:hover .home-event-view img,
.home-article-card:hover .home-article-view img {
    transform: translateX(4px);
}

.directory-category a,
.directory-store-card a {
    transition:
        color .2s ease;
}

.directory-category a:hover,
.directory-store-card:hover a {
    color: #fa5901 !important;
}

/* kategori */

.directory-category {
    transition:
        background-color .2s ease,
        transform .2s ease;
}

.directory-category:hover {
    background-color: #f1f1eb !important;
}

.view-by a,
.floor-menu a {
    color: #555;

    text-decoration: none;

    transition:
        color .2s ease;
}

.view-by a:hover,
.floor-menu a:hover {
    color: #fa5901;

    text-decoration: underline;
}

.home-article-more {
    padding-top: 8px !important;
}

.home-article-more a {
    display: inline-block;

    padding: 9px 22px;

    background: #118635;

    border: 1px solid #118635;

    color: #fff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.home-article-more a:hover {
    background: #fff;

    color: #118635;

    transform: translateY(-2px);

    box-shadow:
        0 4px 10px rgba(0,0,0,.12);
}

.home-event-card:hover {
    border-color: #ce0b35;
}

.home-article-card:hover {
    border-color: #118635;
}

.promo-card:hover {
    border-color: #cf9903;
}

.promo-wrapper > tbody > tr > td,
.home-event-wrapper > tbody > tr > td,
.home-article-wrapper > tbody > tr > td {
    vertical-align: top;
}

.promo-card a,
.directory-store-card a,
.home-event-card a,
.home-article-card a {
    outline: none;
}

@media screen and (max-width: 700px) {

    .promo-wrapper,
    .directory-wrapper,
    .home-event-wrapper,
    .home-article-wrapper {
        width: 100% !important;
    }

    .promo-wrapper > tbody > tr > td,
    .home-event-wrapper > tbody > tr > td,
    .home-article-wrapper > tbody > tr > td {
        display: block;

        width: 100% !important;

        padding:
            0 0 25px 0 !important;
    }

    .promo-card,
    .home-event-card,
    .home-article-card,
    .directory-store-card {
        width: 100% !important;

        max-width: 300px;

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

    .promo-image,
    .home-event-image,
    .home-article-image {
        width: 100% !important;
    }

    .promo-image img,
    .home-event-image img,
    .home-article-image img {
        width: 100% !important;
        height: auto;
    }

    .promo-section-title,
    .directory-section-title,
    .home-event-title,
    .home-article-title {
        font-size: 21px !important;
    }

}

.promo-section,
.directory-section,
.home-event-section,
.home-article-section {
    margin-bottom: 35px !important;
}

.promo-card {
    height: 390px !important;
}

.promo-image {
    height: 205px !important;
}

.promo-image img {
    width: 300px !important;
    height: 205px !important;

    object-fit: contain;
}

/* judul promo */

.promo-title {
    height: 65px !important;

    padding: 12px !important;

    font-size: 15px !important;
    line-height: 20px !important;
}

/* link */

.promo-view {
    height: 50px !important;

    padding: 10px 12px !important;
}

.directory-store-card {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease !important;
}

.directory-store-card:hover {
    transform: translateY(-4px) !important;

    box-shadow:
        0 7px 16px rgba(0,0,0,.15) !important;

    border-color: #fa5901 !important;
}

/* nama toko */

.directory-store-card .store-name {
    font-size: 13px !important;

    line-height: 18px !important;
}

.home-event-card {
    height: 390px !important;
}

.home-event-image {
    height: 205px !important;
}

.home-event-image img {
    width: 300px !important;
    height: 205px !important;

    object-fit: contain;
}

.home-article-card {
    min-height: 330px !important;
}

.home-article-image {
    height: 140px !important;
}

.home-article-image img {
    width: 229px !important;
    height: 140px !important;

    object-fit: cover;
}

.home-article-name {
    min-height: 42px;

    font-size: 13px !important;

    line-height: 18px !important;
}

.bg-footer-instagram-box {
    width: 100% !important;

    max-width: 240px !important;

    min-height: 0 !important;

    overflow: hidden !important;
}

.bg-footer-instagram-box iframe {
    width: 100% !important;

    min-height: 240px !important;

    max-height: 240px !important;
}

.bg-footer {
    margin-top: 20px !important;
}

@media screen and (max-width: 700px) {

    .promo-card,
    .home-event-card {
        height: auto !important;
    }

    .home-article-card {
        min-height: 0 !important;
    }

    .bg-footer-instagram-box {
        max-width: 100% !important;
    }

}

.home-event-section {
    width: 970px;
    padding-top: 15px;
    padding-bottom: 40px;
}

.home-event-title {
    color: #ce0b35;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.home-event-subtitle {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    padding-bottom: 20px;
}

.home-event-wrapper {
    width: 970px;
    border-collapse: separate;
    border-spacing: 0;
}

.home-event-wrapper > tbody > tr > td {
    width: 300px;
    padding: 0 35px 25px 0;
    vertical-align: top;
}

.home-event-wrapper > tbody > tr > td:last-child {
    padding-right: 0;
}

.home-event-card {
    width: 300px;
    background: #fff;

    border: 1px solid #e5e5e5;

    box-sizing: border-box;
    overflow: hidden;

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

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

    border-color: #ce0b35;

    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.home-event-image {
    width: 298px;
    height: 190px;

    background: #fff;
    overflow: hidden;
}

.home-event-image img {
    display: block;

    width: 298px;
    height: 190px;

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

    transition: transform .35s ease;
}

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

.home-event-border-1 {
    border-bottom: #ce0b35 5px solid;
}

.home-event-border-2 {
    border-bottom: #cf9903 5px solid;
}

.home-event-border-3 {
    border-bottom: #0079c3 5px solid;
}

.home-event-info {
    padding: 12px;
    background: #fff;
    box-sizing: border-box;
}

.home-event-name {
    height: 42px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;

    color: #333;

    line-height: 21px;

    transition: color .2s ease;
}

.home-event-card:hover .home-event-name {
    color: #ce0b35;
}

.home-event-description {
    height: 38px;

    padding-top: 7px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    color: #777;

    line-height: 18px;
}

.home-event-view {
    padding-top: 10px;

    text-align: right;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.home-event-view a {
    color: #666;
    text-decoration: none;

    transition: color .2s ease;
}

.home-event-view a:hover {
    color: #ce0b35;
    text-decoration: underline;
}

.home-event-view img {
    vertical-align: middle;
    margin-left: 5px;

    transition: transform .2s ease;
}

.home-event-card:hover .home-event-view img {
    transform: translateX(4px);
}

.home-event-more {
    padding-top: 5px;
    text-align: center;
}

.home-event-more a {
    display: inline-block;

    padding: 11px 25px;

    background: #ce0b35;
    color: #fff;

    border: 1px solid #ce0b35;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.home-event-more a:hover {
    background: #fff;
    color: #ce0b35;

    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.home-article-section {
    width: 970px;
    padding-top: 10px;
    padding-bottom: 40px;
}

.home-article-title {
    color: #118635;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.home-article-subtitle {
    color: #777;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    padding-bottom: 20px;
}

.home-article-wrapper {
    width: 970px;
    border-collapse: separate;
    border-spacing: 0;
}

.home-article-wrapper > tbody > tr > td {
    width: 229px;
    padding: 0 18px 25px 0;
    vertical-align: top;
}

.home-article-wrapper > tbody > tr > td:last-child {
    padding-right: 0;
}

.home-article-card {
    width: 229px;

    background: #fff;

    border: 1px solid #e5e5e5;

    overflow: hidden;

    box-sizing: border-box;

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

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

    border-color: #118635;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18);
}

.home-article-image {
    width: 227px;
    height: 145px;

    background: #fff;

    overflow: hidden;
}

.home-article-image img {
    display: block;

    width: 227px;
    height: 145px;

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

    transition:
        transform .35s ease;
}

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

.home-article-border-1 {
    border-bottom: #ce0b35 5px solid;
}

.home-article-border-2 {
    border-bottom: #cf9903 5px solid;
}

.home-article-border-3 {
    border-bottom: #0079c3 5px solid;
}

.home-article-border-4 {
    border-bottom: #118635 5px solid;
}

.home-article-info {
    padding: 10px;

    background: #fff;

    box-sizing: border-box;
}

.home-article-name {
    height: 42px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: bold;

    color: #333;

    line-height: 20px;

    transition:
        color .2s ease;
}

.home-article-card:hover
.home-article-name {
    color: #118635;
}

.home-article-description {
    height: 38px;

    padding-top: 6px;

    overflow: hidden;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    color: #777;

    line-height: 17px;
}

.home-article-view {
    padding-top: 9px;

    text-align: right;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
}

.home-article-view a {
    color: #666;

    text-decoration: none;

    transition:
        color .2s ease;
}

.home-article-view a:hover {
    color: #118635;

    text-decoration: underline;
}

.home-article-view img {
    vertical-align: middle;

    margin-left: 4px;

    transition:
        transform .2s ease;
}

.home-article-card:hover
.home-article-view img {
    transform: translateX(4px);
}

.home-article-more {
    padding-top: 5px;

    text-align: center;
}

.home-article-more a {
    display: inline-block;

    padding: 11px 25px;

    background: #118635;

    color: #fff;

    border: 1px solid #118635;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: bold;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.home-article-more a:hover {
    background: #fff;

    color: #118635;

    box-shadow:
        0 4px 10px rgba(0,0,0,.15);
}

@media screen and (max-width: 700px) {

    .home-article-section,
    .home-article-wrapper {
        width: 100%;
    }

    .home-article-wrapper > tbody > tr > td {
        display: block;

        width: 100%;

        padding: 0 0 20px 0 !important;
    }

    .home-article-card {
        width: 100%;
        max-width: 300px;

        margin: 0 auto;
    }

    .home-article-image {
        width: 100%;
        max-width: 300px;
    }

    .home-article-image img {
        width: 100%;
        max-width: 300px;
    }

}

.promo-wrapper,
.directory-wrapper,
.home-event-wrapper,
.home-article-wrapper {
    width: 970px !important;
    border: 0 !important;
    border-spacing: 0 !important;
    border-collapse: separate !important;
}

.promo-section-title,
.directory-section-title,
.home-event-title,
.home-article-title {
    display: block;

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

    color: #cf9903 !important;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px !important;
    line-height: 30px;

    font-weight: bold;

    text-transform: uppercase;
}

/* garis kecil aksen */

.promo-section-title:after,
.directory-section-title:after,
.home-event-title:after,
.home-article-title:after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 8px;

    background: #fa5901;
}

.promo-section,
.directory-section,
.home-event-section,
.home-article-section {
    width: 970px;

    margin: 0 0 45px 0;
}

.promo-card,
.directory-store-card,
.home-event-card,
.home-article-card {
    box-sizing: border-box;

    background: #fff;

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

.promo-card:hover,
.directory-store-card:hover,
.home-event-card:hover,
.home-article-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.15);

    position: relative;
    z-index: 5;
}

.promo-image,
.home-event-image,
.home-article-image {
    overflow: hidden;
}

.promo-image img,
.home-event-image img,
.home-article-image img {
    display: block;

    transition:
        transform .3s ease;
}

/* zoom gambar */

.promo-card:hover .promo-image img,
.home-event-card:hover .home-event-image img,
.home-article-card:hover .home-article-image img {
    transform: scale(1.04);
}

.promo-title,
.home-event-name,
.home-article-name,
.store-name {
    transition:
        color .2s ease;
}

.promo-card:hover .promo-title,
.home-event-card:hover .home-event-name,
.home-article-card:hover .home-article-name,
.directory-store-card:hover .store-name {
    color: #fa5901 !important;
}

.promo-view a,
.home-event-view a,
.home-article-view a {
    color: #555 !important;

    text-decoration: none;

    transition:
        color .2s ease;
}

.promo-card:hover .promo-view a,
.home-event-card:hover .home-event-view a,
.home-article-card:hover .home-article-view a {
    color: #fa5901 !important;

    text-decoration: underline;
}

.promo-view img,
.home-event-view img,
.home-article-view img {
    transition:
        transform .2s ease;
}

.promo-card:hover .promo-view img,
.home-event-card:hover .home-event-view img,
.home-article-card:hover .home-article-view img {
    transform: translateX(4px);
}

.promo-card {
    width: 300px !important;
    height: 420px;

    overflow: hidden;

    border: 1px solid #eee;
}

.promo-image {
    width: 300px;
}

.promo-image img {
    width: 300px !important;
    height: 205px !important;

    object-fit: contain;

    background: #fff;
}

.directory-store-card {
    border: 1px solid #eee;

    background: #fff;
}

.directory-store-card:hover {
    border-color: #fa5901;
}

.directory-category {
    transition:
        background-color .2s ease,
        transform .2s ease;
}

.directory-category:hover {
    background-color: #f3f3ed !important;

    transform: translateY(-2px);
}

.directory-category a,
.view-by a,
.floor-menu a {
    transition:
        color .2s ease;
}

.directory-category a:hover,
.view-by a:hover,
.floor-menu a:hover {
    color: #fa5901 !important;

    text-decoration: underline;
}

.home-event-card {
    width: 300px;

    overflow: hidden;

    border: 1px solid #eee;
}

.home-event-card:hover {
    border-color: #ce0b35;
}

.home-event-image img {
    width: 300px;
    height: 205px;

    object-fit: contain;

    background: #fff;
}

.home-article-card {
    width: 229px;

    overflow: hidden;

    border: 1px solid #eee;
}

.home-article-card:hover {
    border-color: #118635;
}

.home-article-image {
    width: 229px;
}

.home-article-image img {
    width: 229px !important;
    height: 140px;

    object-fit: cover;

    background: #fff;
}

.home-article-more a {
    display: inline-block;

    padding: 9px 22px;

    background: #118635;

    border: 1px solid #118635;

    color: #fff !important;

    font-size: 11px;
    font-weight: bold;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.home-article-more a:hover {
    background: #fff;

    color: #118635 !important;

    transform: translateY(-2px);

    box-shadow:
        0 4px 10px rgba(0,0,0,.12);
}

.home-event-subtitle,
.home-article-subtitle {
    margin: 0 0 20px 0;

    color: #777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    line-height: 18px;
}

.promo-card a,
.directory-store-card a,
.home-event-card a,
.home-article-card a {
    outline: none;
}

@media screen and (max-width: 700px) {

    .promo-wrapper,
    .directory-wrapper,
    .home-event-wrapper,
    .home-article-wrapper,
    .promo-section,
    .directory-section,
    .home-event-section,
    .home-article-section {
        width: 100% !important;
    }

    .promo-wrapper > tbody > tr > td,
    .home-event-wrapper > tbody > tr > td,
    .home-article-wrapper > tbody > tr > td {
        display: block;

        width: 100% !important;

        padding: 0 0 25px 0 !important;
    }

    .promo-card,
    .home-event-card,
    .home-article-card,
    .directory-store-card {
        width: 100% !important;

        max-width: 300px;

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

    .promo-image,
    .home-event-image,
    .home-article-image {
        width: 100% !important;
    }

    .promo-image img,
    .home-event-image img,
    .home-article-image img {
        width: 100% !important;

        height: auto !important;

        object-fit: contain;
    }

    .promo-section-title,
    .directory-section-title,
    .home-event-title,
    .home-article-title {
        font-size: 21px !important;
    }

}

/* BG JUNCTION HOMEPAGE V2 */
:root{
 --bj-gold:#cf9903;--bj-orange:#fa5901;--bj-red:#ce0b35;--bj-green:#118635;
 --bj-text:#24272b;--bj-muted:#74787d;--bj-border:#e8e8e8;--bj-soft:#f7f7f7;
 --bj-container:1180px;--bj-radius:14px;--bj-shadow:0 8px 24px rgba(0,0,0,.08);
 --bj-shadow-hover:0 18px 44px rgba(0,0,0,.13);--bj-ease:.28s cubic-bezier(.2,.7,.2,1);
}
.home-banner,.home-directory-section,.home-event-section,.home-article-section,.promo-section{
 width:100%;max-width:var(--bj-container);margin-left:auto;margin-right:auto;box-sizing:border-box;
}
.home-banner{margin-bottom:54px;overflow:hidden;border-radius:var(--bj-radius);background:var(--bj-soft);box-shadow:0 12px 32px rgba(0,0,0,.1)}
.home-banner img{display:block;max-width:100%;height:auto}
.home-directory-section,.home-event-section,.home-article-section{padding-top:12px;padding-bottom:58px}
.home-section-title,.home-directory-title,.home-event-title,.home-article-title{
 margin:0 0 8px;padding:0;font-family:Arial,Helvetica,sans-serif;font-size:clamp(24px,3vw,32px);
 line-height:1.2;font-weight:700;letter-spacing:-.35px;text-transform:uppercase
}
.home-section-title:after,.home-directory-title:after,.home-event-title:after,.home-article-title:after{
 content:"";display:block;width:48px;height:4px;margin-top:12px;border-radius:999px
}
.home-section-title,.promo-section-title{color:var(--bj-gold)}
.home-section-title:after,.promo-section-title:after{background:var(--bj-gold)}
.home-directory-title{color:var(--bj-orange)}.home-directory-title:after{background:var(--bj-orange)}
.home-event-title{color:var(--bj-red)}.home-event-title:after{background:var(--bj-red)}
.home-article-title{color:var(--bj-green)}.home-article-title:after{background:var(--bj-green)}
.home-directory-subtitle,.home-event-subtitle,.home-article-subtitle{
 margin:0 0 26px;color:var(--bj-muted);font:14px/1.7 Arial,Helvetica,sans-serif
}
.promo-wrapper,.home-directory-wrapper,.home-event-wrapper,.home-article-wrapper{
 width:100%;border-collapse:separate;border-spacing:0
}
.promo-wrapper > tbody > tr > td,
.home-event-wrapper > tbody > tr > td,
.home-article-wrapper > tbody > tr > td {
    width: 25%;
    padding: 0 14px 28px 0;
    vertical-align: top;
}

.promo-wrapper > tbody > tr > td:nth-child(4n),
.home-event-wrapper > tbody > tr > td:nth-child(4n),
.home-article-wrapper > tbody > tr > td:nth-child(4n) {
    padding-right: 0;
}
.promo-card,.home-event-card,.home-article-card,.home-directory-card{
 width:100%;overflow:hidden;border:1px solid var(--bj-border);border-radius:var(--bj-radius);
 background:#fff;box-shadow:var(--bj-shadow);transition:transform var(--bj-ease),box-shadow var(--bj-ease),border-color var(--bj-ease)
}
.promo-card:hover,.home-event-card:hover,.home-article-card:hover,.home-directory-card:hover{
 transform:translateY(-6px);border-color:#ddd;box-shadow:var(--bj-shadow-hover)
}
.promo-image{width:100%;height:250px;overflow:hidden;background:#fafafa}
.promo-image img,.home-event-image img,.home-directory-image img,.home-article-image img{
 display:block;width:100%;height:100%;object-fit:contain;transition:transform .45s ease
}
.promo-card:hover img,.home-event-card:hover img,.home-directory-card:hover img,.home-article-card:hover img{transform:scale(1.045)}
.promo-title{min-height:68px;height:auto;padding:16px 18px 10px;box-sizing:border-box;color:var(--bj-text);background:#fff;font-size:16px;font-weight:700;line-height:1.45}
.promo-view{padding:0 18px 19px;background:#fff}.promo-view a{color:var(--bj-gold)!important;font-size:11px;font-weight:700;text-decoration:none;text-transform:uppercase}
.home-directory-wrapper>tbody>tr>td{width:25%;padding:0 14px 26px 0;vertical-align:top}.home-directory-wrapper>tbody>tr>td:last-child{padding-right:0}
.home-directory-image{width:100%;height:190px;overflow:hidden;background:#fafafa}
.home-directory-info{padding:16px 16px 18px;background:#fff}.home-directory-name{min-height:38px;color:var(--bj-text);font-size:15px;font-weight:700;line-height:1.4}
.home-directory-location{min-height:20px;margin-top:7px;color:var(--bj-muted);font-size:12px}.home-directory-view{margin-top:15px}.home-directory-view a{color:var(--bj-orange)!important;font-size:11px;font-weight:700;text-decoration:none;text-transform:uppercase}
.home-event-image{width:100%;height:225px;overflow:hidden;background:#fafafa}
.home-article-image{width:100%;height:215px;overflow:hidden;background:#fafafa}.home-article-image img{object-fit:cover}
.home-article-name{padding:15px 16px 18px;color:var(--bj-text);font-size:14px!important;line-height:1.55!important}
.home-directory-more,.home-event-more,.home-article-more{margin-top:8px;text-align:center}
.home-directory-more a,.home-event-more a,.home-article-more a{
 display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 20px;border-radius:6px;
 color:#fff!important;font-size:11px;font-weight:700;letter-spacing:.3px;text-decoration:none!important;text-transform:uppercase;
 transition:transform var(--bj-ease),box-shadow var(--bj-ease),filter var(--bj-ease)
}
.home-directory-more a{background:var(--bj-orange)}.home-event-more a{background:var(--bj-red)}.home-article-more a{background:var(--bj-green)}
.home-directory-more a:hover,.home-event-more a:hover,.home-article-more a:hover{transform:translateY(-2px);box-shadow:var(--bj-shadow);filter:brightness(.96)}
.promo-card a:focus-visible,.home-directory-card a:focus-visible,.home-event-card a:focus-visible,.home-article-card a:focus-visible{
 outline:3px solid rgba(207,153,3,.35);outline-offset:3px
}
@media(max-width:900px){
 :root{--bj-container:calc(100% - 32px)}
 .promo-wrapper>tbody>tr>td,.home-event-wrapper>tbody>tr>td,.home-article-wrapper>tbody>tr>td{width:50%}
 .promo-wrapper>tbody>tr>td:nth-child(2n),.home-event-wrapper>tbody>tr>td:nth-child(2n),.home-article-wrapper>tbody>tr>td:nth-child(2n){padding-right:0}
 .home-directory-wrapper>tbody>tr>td{width:50%}.home-directory-wrapper>tbody>tr>td:nth-child(2n){padding-right:0}
}
@media(max-width:600px){
 :root{--bj-container:calc(100% - 24px)}
 .home-banner{margin-bottom:34px;border-radius:8px}
 .home-directory-section,.home-event-section,.home-article-section{padding-bottom:40px}
 .home-section-title,.home-directory-title,.home-event-title,.home-article-title{font-size:22px!important}
 .promo-wrapper>tbody>tr>td,.home-directory-wrapper>tbody>tr>td,.home-event-wrapper>tbody>tr>td,.home-article-wrapper>tbody>tr>td{
  display:block;width:100%!important;padding:0 0 20px!important
 }
 .promo-card:hover,.home-directory-card:hover,.home-event-card:hover,.home-article-card:hover{transform:none}
 .promo-image{height:220px}.home-directory-image{height:205px}.home-event-image,.home-article-image{height:210px}
}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;transition-duration:.01ms!important}}
