/* #region : COMMON HERO */
.common-hero {}
.common-hero__image-container {
    height: 500px;
    background: #333333 url('../images/slide-3.png') center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.common-hero__image-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    background: -moz-linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    background: linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.common-hero__text-container {
    background: #101828 url('../images/bg-batik-tl.png') no-repeat;
    background-position: 20% 0;
    color: #ffffff;
}
.common-hero__wrapper {
    padding-top: 2.5rem;
    padding-bottom: 5rem;}
.common-hero__breadcrumbs-container {
    font-size: clamp(1rem, calc(1rem + ((1vw - 0.48rem) * 0.3759)), 1.125rem);
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.common-hero__breadcrumbs-container a {
    color: #ffffff;
    font-family: var(--font-urbanist);
}
.common-hero__breadcrumbs-container .separator {
    font-size: 0.875rem;
}
.common-hero__title {
    font-family: var(--font-urbanist);
    line-height: 1.3;
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.48rem) * 6.9549)), 4.375rem);
    margin-top: 0;
    margin-bottom: 0.75rem;
    max-width: 900px;
}
.common-hero__description {
    font-family: var(--font-urbanist);
    font-size: clamp(1rem, calc(1rem + ((1vw - 0.48rem) * 0.3759)), 1.125rem);
    margin: 0;
    max-width: 900px;
}
/* #endregion */
/* end of COMMON HERO */

/* #region : UNGGAH KARYA BANNER */
.upload-banner__card {
    border-radius: 20px;
    background: url('../images/bg-upload-banner.png') center no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: clamp(2.5rem, calc(2.5rem + ((1vw - 0.48rem) * 3.7594)), 3.75rem) clamp(2rem, calc(2rem + ((1vw - 0.48rem) * 3.3835)), 3.125rem);
}
.upload-banner__title {
    color: #ffffff;
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.48rem) * 3.3835)), 3.125rem);
    font-family: var(--font-raleway);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
/* #endregion */
/* end of UNGGAH KARYA BANNER */

/* #region : PAGE LIST */
.page-grid__list {
    display: grid;
    gap: 1rem;
}
.page-grid__item{}
.page-grid__card{
    border-radius: 10px;
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.page-grid__text-container{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
}
.page-grid__title{
    color: #ffffff;
    text-align: center;
    font-size: clamp(1.125rem, calc(1.125rem + ((1vw - 0.48rem) * 1.3158)), 1.5rem);
    font-family: var(--font-raleway);
    margin: 0;
}
.page-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform ease-out 0.2s;
}
.page-grid__item:hover .page-grid__image {
    transform: scale(1.2);
}
/* #endregion */
/* end of PAGE LIST */

/* #region : POST LIST */
.post-list__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .post-list__list {
        grid-template-columns: repeat(4, 1fr);
    }
}
.post-list__item-card {
    background: #101828;
    color: #ffffff;
    height: 100%;
}
.post-list__item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    object-fit: cover;
}
.post-list__item-text-container {
    padding: 0.75rem 1.25rem;
}
.post-list__item-title {
    font-size: clamp(1.125rem, calc(1.125rem + ((1vw - 0.48rem) * 1.5038)), 1.625rem);
    font-family: var(--font-raleway);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 4px;
}
.post-list__item-meta {
    color: #C11F1F;
    font-size: 0.75rem;
    font-family: var(--font-inter);
    margin-bottom: 4px;
}
.post-list__item-excerpt {
    font-size: 0.75rem;
    font-family: var(--font-inter);
    margin-bottom: 1rem;
}
.post-list__item-taxonomy-list {
    display: flex;
    gap: 0.25rem;
    align-items: stretch;
}
.post-list__item-taxonomy {
    font-size: 0.75rem;
    font-family: var(--font-inter);
    padding: 2px 8px;
    background: #5A5B5B;
}
.post-list__item-taxonomy:nth-child(odd) {
    background: #C13939;
}
/* #endregion */
/* end of POST LIST */

/* #region : GALLERY */
.gallery__tab-controller {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.gallery__controller-button {
    font-family: var(--font-urbanist);
    padding: 0.5rem 1rem;
    background: #DDDDDD;
    color: #ffffff;
    cursor: pointer;
}
.gallery__controller-button--active {
    background: #A7131A;
}

.gallery__grid-1,
.gallery__grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.gallery__grid-1-item,
.gallery__grid-2-item {
    overflow: hidden;
}
@media (min-width: 768px) {
    .gallery__grid-1,
    .gallery__grid-2 {
        grid-template-columns: repeat(4,1fr);
    }
    .gallery__grid-1-item:nth-child(1) {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 3;
    }
    .gallery__grid-2-item:nth-child(1) {
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 1;
        grid-row-end: 3;
    }
}
.gallery__tab-single .gallery-item {
    width: 100%;
    height: 100%;
    display: block;
}
.gallery__tab-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform ease-out 0.2s;
}
.gallery__grid-1-item:hover img,
.gallery__grid-2-item:hover img {
    transform: scale(1.2);
}
/* #endregion */
/* end of GALLERY */

/* #region : POST ARCHIVE*/
.post-archive__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}
@media (min-width: 768px) {
    .post-archive__wrapper{
        grid-template-columns: 3fr 2fr;
    }
}
.post-archive__left-col {}
.post-archive__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
.post-archive__item {}
.post-archive__item-card {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    font-family: var(--font-inter);
    justify-content: space-between;
}
.post-archive__item-text-container {
}
.post-archive__item-author-container {
    display: flex;
    gap: 0.375rem;
    align-items: center;
    margin-bottom: 0.5rem;
}
.post-archive__item-author-avatar {
    flex-grow: 0;
    flex-shrink: 0;
}
.post-archive__item-author-avatar img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: cover;
    border-radius: 3px;
}
.post-archive__item-author-name {
    font-size: 0.75rem;
    color: #403E3E;
}
.post-archive__item-title {
    font-size: clamp(1.125rem, calc(1.125rem + ((1vw - 0.48rem) * 1.3158)), 1.5rem);
    color: #403E3E;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.3em;
}
.post-archive__item-excerpt {
    font-size: 0.875rem;
    color: #000000;
    margin-bottom: 1rem;
}
.post-archive__item-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(64, 62, 62, 0.6);
}
.post-archive__item-meta-type {
    padding: 2px 6px;
    background: #EEB346;
    border-radius: 2px;
    color: #ffffff;
}
.post-archive__item-image-container {
    width: 30%;
    flex-grow: 0;
    flex-shrink: 0;
}
.post-archive__item-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    aspect-ratio: 200 / 134;
}

/* WIDGET */
.widget-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.widget__title {
    font-family: var(--font-inter);
    font-size: 0.875rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
.widget__taxonomy-list {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}
.widget__taxonomy-item {
    padding: 0.25rem 0.5rem;
    border: 1px solid #757575;
    color: #757575;
    font-size: 0.875rem;
    font-family: var(--font-inter);
    transition: all ease-out 0.2s;
    border-radius: 4px;
}
.widget__taxonomy-item:hover {
    background: #757575;
    color: #ffffff;
}

.widget__author-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.widget__author {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-family: var(--font-inter);
    color: #403E3E;
}
.widget__author-avatar-container {
    flex-grow: 0;
    flex-shrink: 0;
}
.widget__author-avatar {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 99px;
}
.widget__author-name {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
}
.widget__author-title {
    font-size: 0.75rem;
}
.widget__author-link-container {
    margin-left: 1.25rem;
    flex-grow: 0;
    flex-shrink: 0;
}
.widget__author-link {
    font-family: var(--font-urbanist);
    letter-spacing: 0.1em;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: #A7131A;
    color: #ffffff;
    font-weight: 700;
}
.widget--footer {
    font-family: var(--font-jost);
    font-size: 0.875rem;
    color: #757575;
}
.widget--footer__link {
    color: #757575;
}
/* #endregion */
/* end of POST ARCHIVE */

.separator__wrapper {
    padding-top: 0;
    padding-bottom: 0;
}
hr.separator {
    height: 0;
    border-top: 1px solid #C8C8C8;
    margin: 0;
}