* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 180px;
    font-family: 'OpenSans-Bold';
    font-weight: bold;
    font-style: normal;
}

/* Right Column Adjustment */

.right-column {
    right: -35px !important;
    padding-left: 55px !important;
}

/* End of Right Column */

/* Article Section */

.Second-Container {
    display: flex;
    flex-direction: row;
}

.article-container {
    padding: 90px 100px 50px 100px;
    background: #fff;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    height: auto;
    min-height: unset;
}

.category-box {
    display: block;
    padding: 4px 15px;
    background-color: #FAEC22;
    font-size: clamp(0.5rem, 1.5vw, 0.9rem);
    font-family: 'OpenSans-Regular';
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    width: fit-content;
    margin-bottom: 20px;
}

.title-container {
    width: 90%;
    padding-bottom: 2.5rem;
}

.title {
    display: block;
    font-family: 'DidotB06-Bold';
    font-size: 3rem;
    margin-bottom: 10px;
}

.author {
    font-family: 'OpenSans-Bold';
    font-size: clamp(0.5rem, 2.2vw, 0.8rem);
    line-height: 1.6;
    text-transform: uppercase;
    color: #000;
    display: inline;
}

.date {
    font-family: 'OpenSans-Regular';
    font-size: clamp(0.5rem, 1.2vw, 0.8rem);
    display: inline;
    text-transform: uppercase;
    color: #6c6c6cd3;
    margin-left: 10px;
}

.article-banner {
    position: relative; 
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}

.article-banner img {
    background: #f0f0f0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 35vw;
    max-height: 40vw;
    object-fit: cover;
    object-position: top;
}

.article-meta {
    flex-direction: row !important;
}

.banner-text {
    text-transform: uppercase;
    font-family: 'OpenSans-Regular';
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: #aaa9a9d3;
    background: rgba(244, 244, 244, 0.823);
    text-align: center;
    padding: 8px;
    height: auto;
    margin-bottom: 15px;
}

.banner-text a {
    text-decoration: none;
    color: #aaa9a9d3;
    border-bottom: 1.5px solid #FAEC22;
}

.banner-text a:hover {
    color: #e4dd7b;
    transition: all 0.2s ease;
}

.article-paragraph {
    display: flex;
    flex-direction: column;
    width: 68%;
    position: relative;
}

.article-paragraph::after {
    content: '';
    position: absolute;
    right: -48px;
    bottom: 0;
    top: 1px;
    min-height: 285vh;
    width: 0.5px;
    background: #b6b6b6;
}

.article-paragraph h1, h2, h3, h4, h5 {
    font-family: 'DidotB06-Bold';
}

.article-paragraph h3 {
    margin-bottom: 1rem;
}

.article-paragraph p {
    font-family: 'OpenSans-Light';
    font-size: 1rem;
    line-height: 1.6;
    color: #4b4b4b;
    margin-bottom: 1rem !important;
}

.article-description {
    margin-bottom: 30px;
}

/* Credit Section */

.credit-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    margin-top: 30px;
}

.credit-section p {
    color: #000;
    font-size: 1.1rem;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
}

.credit-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winning-entries-header h2 {
    font-family: 'DidotB06-Bold';
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.yellow-dot-article {
    width: 8px;
    height: 8px;
    background-color: #FAEC22;
    border-radius: 50%;
    flex-shrink: 0;
}

.credit-content {
    padding: 20px 0;
}

/* View winners */

.view-winners-button {
    text-align: left;
}

.btn-view-winners {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FAEC22;
    color: #000;
    padding: 7px 17px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'OpenSans-Bold';
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-view-winners:hover {
    background-color: #e6d600;
    color: #000;
    transform: translateY(-1px);
}

.btn-view-winners svg {
    transition: transform 0.2s ease;
}

.btn-view-winners:hover svg {
    transform: translateX(2px);
}

/* End of View Winner */

/* End of Credit */

/* End of Article Section */

/* Advertisement Adjustment */

.promo-container {
    padding-bottom: 0;
}

/* End of Advertisement Adjustment */

/* Gallery Section */

.gallery-title {
    font-family: 'DidotB06-Bold', serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem !important;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(183, 183, 183);
    width: 100%;
}

/* LightGallery.js Custom Styles */

.article-gallery {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

.lightgallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    display: block;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-toolbar {
    background-color: rgba(0, 0, 0, 0.5);
}

.lg-counter {
    color: #fff;
    font-family: 'OpenSans-Regular';
}

.lg-close {
    color: #fff;
}

.lg-prev, .lg-next {
    color: #fff;
}

#lg-outer-1 {
    z-index: 9999;
}

#lg-backdrop-1 {
    z-index: 9999;
}

/* End of LightGallery.js */

/* Media Section */

.media-title {
    font-family: 'DidotB06-Bold', serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 2rem !important;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(183, 183, 183);
    width: 100%;
}

/* End of Media */

/* End of Gallery */

/* Winning Entry */

.entry-ref-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.entry-ref-title {
    font-family: 'DidotB06-Bold', serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.entry-ref-value {
    line-height: 1.6;
    color: #4b4b4b;
    border-radius: 5px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.entry-ref-value p {
    font-family: 'OpenSans-Light' !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
}

/* End of Responsive */

/* Responsive */

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

    /* Articles */

    .article-container {
        padding: 40px 50px !important;
    }

    .article-banner {
        margin-bottom: 30px;
    }

    .article-paragraph::after {
        right: -30px;
    }

    .article-gallery {
        margin-top: 0;
        padding-top: 0;
    }

    .article-description {
        margin-bottom: 20px;
    }

    /* End of Articles */

    /* Entry Reference */

    .entry-ref-section {
        margin-top: 0;
        padding-top: 20px;
    }

    /* End of Entry Reference */

    /* Right Column */

    .right-column {
        right: -15px !important;
        width: 27.5% !important;
    }

    .latest-posts-list {
        gap: 40px;
    }

    /* End of right column */

}

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

    /* Article Section */

    .Second-Container {
        flex-direction: column;
    }

    .title {
        font-size: 2rem;
    }

    .date {
        font-size: 0.8rem;
    }

    .title-container {
        padding-bottom: 25px;
    }

    /* Banner Section */

    .article-banner img {
        min-height: 45vw;
    }

    .article-banner {
        margin-bottom: 10px;
    }

    /* End of Banner Section */

    /* Article Paragraph */

    .article-paragraph {
        width: 100%;
    }
    
    .article-paragraph::after {
        display: none;
    }

    /* End of Article Paragraph */

    /* Gallery Section */

    .article-gallery {
        margin-top: 0;
        padding-top: 10px;
        padding-bottom: 0;
    }

    .article-description {
        margin: 0;
    }

    /* End of Gallery Section */

    /* End of Article Section */

    .entry-ref-section {
        width: 100%;
        margin-top: 20px;
        padding-top: 0;
    }
    
    .entry-ref-title {
        font-size: 1.2rem;
    }
    
    .entry-ref-value {
        font-size: 0.9rem;
        padding: 15px;
    }

    /* Right Column Adjustment */

    .right-column {
        right: 0 !important;
        padding-left: 0 !important;
        margin-top: 20px;
        width: 100% !important;
    }

    /* End of Right Colummn */

}

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

    .banner-text {
        font-size: 0.6rem;
        padding: 3px
    }

    .date {
        font-size: 0.5rem;
    }

    .Second-Container {
        display: flex;
        flex-direction: column;
    }

    .title {
        font-size: calc(1.375rem + 1.5vw);
        margin-bottom: 5px;
    }

    .title-container {
        padding-bottom: 1rem;
    }

    .article-container {
        padding: 20px !important;
    }

    .category-box {
        font-size: 0.55rem;
        margin-bottom: 10px;
        padding: 4px 10px;
    }

    .article-banner {
        margin: 0;
        padding-bottom: 10px;
    }
    
    .article-banner img {
        height: 100%;
        max-height: none;
    }

    .article-paragraph::after {
        display: none;
    }

    .article-paragraph {
        width: 100%;
    }

    .article-paragraph h1, h2, h3, p {
        margin-bottom: 5px;
    }

    .article-paragraph h3 {
        font-size: 1.2rem !important;
    }

    .article-paragraph p {
        font-size: 0.9rem !important;
    }

    .article-gallery {
        margin: 0;
        padding: 0;
    }

    .entry-ref-section {
        padding-top: 0;
    }

    /* Right Column Adjustment */

    .right-column {
        width: 100% !important;
        margin: 0 !important;
        right: 0 !important;
        padding: 30px 15px !important;
    }

    .editors-choice-search-box::after {
        margin-top: 40px;
        width: 100%;
    }

    .latest-posts-section {
        padding-left: 0;
    }

    .right-column-advertisement-section {
        margin-top: 50px;
        margin-bottom: 20px;
        width: 100% !important;
        padding: 0;
        max-width: none;
    }

    .share-icons {
        margin-bottom: 30px;
        align-items: center;
    }

    .right-column-ad-content {
        width: 100%;
    }

    .right-column-ad-header {
        text-align: center;
    }

    .editors-choice-search-box {
        align-items: center;
    }

    .latest-posts-title {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .latest-posts-list {
        gap: 35px;
    }

    /* End of Right Column */

    /* Light Gallery */

    .lightgallery {
        gap: 20px;
    }

    .lg-outer .lg-object {
        padding: 20px;
    }

    /* End of Light Gallery */

    /* Advertisement Adjustment */

    .pm-img {
        max-width: 100%;
    }

    /* End of Advertisement Adjustment */
    
}

@media screen and (max-width: 360px) {
    
    .gallery-item {
        width: 93%;
    }

}

/* End of Responsive */