.module-blog-index {
    /* any general styling for the module */
    position: relative;
}

.module-blog-index .intro-wrapper {
    margin-bottom:4rem;
}

.module-blog-index .intro-wrapper .headline {
    position: relative;
    padding-left:3rem;
}

.module-blog-index .intro-wrapper .headline:before {
    content: url(/images/cho-dot-arrow.svg);
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.module-blog-index .posts-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap:4rem;
}

.module-blog-index .category-heading {
    margin-bottom:4rem;
    font-size:2.5rem;
    line-height: 3rem;
}

.module-blog-index .posts-wrapper .post .post-inner {
    
}

.module-blog-index .breadcrumbs {
    margin-bottom:2rem;
}

.module-blog-index .headlines a {
    text-decoration: none;
}

.module-blog-index .headlines a:hover {
    text-decoration: underline;
}

.module-blog-index .headlines h3 {
    margin-top:1rem;
    font-size:1.9rem;
    font-weight: bold;
}

.module-blog-index .posts-wrapper h2 {
    margin:0;
    font-size:3.5rem;
    font-weight: bold;
}

.module-blog-index .post .image-wrapper {
    flex: 1; /* Makes the image column take 1 part of the available space */
    overflow: hidden; /* Ensures the image stays within the column */
    display: none;
}

.module-blog-index .post .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes any inline spacing around the image */
}
.module-blog-index .post .content-wrapper {
    flex: 1; /* Makes the text column take the other half */
    display: flex;
    flex-direction: column; /* Allows vertical stacking of text */
    justify-content: space-between;
}

.module-blog-index .posts-wrapper .content-wrapper a.read-more {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    margin-top:1rem;
}

.module-blog-index .posts-wrapper .content-wrapper .read-more:after {
    content: '\f061';
    color: #000;
    font: var(--fa-font-solid);
    background-color: var(--yellow);
    border-radius: 50%;
    padding: 2px;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.module-blog-index .posts-wrapper .content-wrapper .read-more:hover:after {
    margin-left:5px;
}

@media (min-width:1200px) {
    .module-blog-index .posts-wrapper .post .post-inner {
        display:grid;
        grid-template-columns: 1fr 2fr;
        gap:5rem;
    }

    .module-blog-index .post .content-wrapper {
        padding:1rem 4rem;
    }
    
    .module-blog-index .post .image-wrapper {
        display: block;
    }

    .module-blog-index .intro-wrapper .headline {
        padding-left: 0;
    }
    
    .module-blog-index .intro-wrapper .headline:before {
        left:-3rem;
    }
}