.standard-category.premium-discover {
    width: 100%;
    max-width: 1080px;
    padding: 0 20px;
    margin: 0 auto;
    padding: 85px 0 50px;
}

/* Common styles for both hero and two items */
.standard_item,
.standard_two_item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.standard_item:hover,
.standard_two_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Link colors */
.cat_page_info_cat span,
.standard_item_title h2,
.standard_two_item_title h2 {
    color: #333;
    transition: color 0.3s ease;
}

.standard_item_link:hover .standard_item_title h2,
.standard_two_item_link:hover .standard_two_item_title h2,
.standard_two_item_link:hover .standard_item_date,
.standard_two_item_link:hover .standard-separator,
.standard_two_item_link:hover .standard_item_author{
    color: #bf2c3a;
}

.cat_page_info_cat {
    font-size: 14px;
    font-weight: 600;
    color: #bf2c3a;
    text-transform: uppercase;
}

/* Hero Article Styles */
.standard_item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.standard_item_link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
}

.standard_item_img_container {
    flex: 0 0 50%;
    position: relative;
}

.standard_item_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.standard_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.standard_item_content {
    flex: 0 0 50%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat_page_info {
    margin-bottom: 16px;
}

.cat_page_info_cat {
    font-size: 14px;
    font-weight: 600;
    color: #bf2c3a;
    text-transform: uppercase;
}

.standard_item_title h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 16px;
    font-weight: 700;
}

.standard_item_txt p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 16px;
}

.standard_item_details {
    font-size: 14px;
    color: #888;
    margin-top: auto;
}

.standard-separator {
    margin: 0 8px;
}

/* Two Items Grid Layout */
.standard_two_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.standard_two_item_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.standard_two_item_img_container {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    width: 100%;
}

.standard_two_item_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.standard_two_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.standard_two_item_content {
    padding: 24px;
}

.standard_two_item_title h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 16px;
    font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .standard-category.premium-discover {
        padding: 80px 20px 50px;
    }

    .standard_item_title h2 {
        font-size: 28px;
    }
    
    .standard_item_content {
        padding: 24px;
    }

    .standard_item_txt p {
        font-size: 16px;
    }

    .standard_two_items {
        gap: 20px;
    }

    .standard_two_item_content {
        padding: 20px;
    }

    .standard_two_item_title h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .standard_category.premium-discover {
        padding: 0 15px;
        margin-top: 40px;
    }

    .standard_item,
    .standard_item_link {
        flex-direction: column;
    }

    .standard_item_img_container {
        flex: none;
        padding-top: 56.25%; /* 16:9 aspect ratio */
    }

    .standard_item_content {
        flex: none;
        padding: 20px;
    }

    .standard_item_title h2 {
        font-size: 24px;
    }

    .standard_item_txt p {
        font-size: 14px;
    }

    .standard_two_items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .standard_two_item_content {
        padding: 16px;
    }

    .standard_two_item_title h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .standard_item_img_container {
        padding-top: 75%; /* 4:3 aspect ratio for mobile */
    }

    .standard_item_content {
        padding: 16px;
    }

    .standard_item_details {
        font-size: 12px;
    }

    .standard_two_items {
        gap: 16px;
    }

    .standard_two_item_img_container {
        padding-top: 75%; /* 4:3 aspect ratio for mobile */
    }
}
.standard_items_more {
    display: none;
}