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

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

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

.module-news-index .intro-wrapper h1,
.module-news-index .intro-wrapper h2,
.module-news-index .intro-wrapper h3,
.module-news-index .intro-wrapper h4,
.module-news-index .intro-wrapper h5,
.module-news-index .intro-wrapper h6 {
    font-weight:bold;
}

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

.module-news-index .intro-wrapper .headline:before {
    content: url(/images/cho-dot-arrow.svg);
    display: block;
    position: absolute;
    left: 0rem;
    top: -2px;
}

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

.module-news-index .category-heading {
    margin-bottom:2rem;
}

.module-news-index .posts-wrapper .post .post-inner {
    display:grid;
    grid-template-columns: 1fr;
    gap:5rem;
}

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

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

.module-news-index .headlines h3 {
    margin-top:1rem;
    font-size:1.9rem;
    line-height: 2.6rem;
    font-weight: bold;
}

.module-news-index h2 {
    margin:0;
    font-size:3.5rem;
    line-height: 4.5rem;
    font-weight:bold;
}

.module-news-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 */
}

.module-news-index .post .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Removes any inline spacing around the image */
}
.module-news-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-news-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-news-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;
}

@media (min-width:1200px) {

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