.ros {
    max-width: 1100px;
    margin: 3em auto;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 10px;
    padding: 1em;
}

.ros::after {
    content: '';
    position: absolute;
    right: -.05rem;
    top: 0;
    width: 100%;
    height: 8px;
    background-color: var(--bg-accent);
    border-radius: 5px;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

.ros .head {
    text-align: center;
    padding: 1em 0;
}

.ros .head h3 {
    font-family: var(--font-sde);
    font-size: 3em;
}

.ros .head p {
    font-size: 4em;
    font-family: var(--font-sde);
    font-weight: 700;
}



/* .ros .row {
    display: flex;
    flex-wrap: wrap;
} */

.ros .latest-card {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    margin-bottom: 130px;
}

.ros .latest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ros .post-thumbnail {
    overflow: hidden;
}

.ros .post-thumbnail img {
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
    /* border-radius: 15px; */
}

.ros .post-content {
    position: absolute;
    background-color: var(--bg-accent);
    width: 100%;
    height: 100%;
    padding: 1em 0.8em;
    top: 110px;
    z-index: 2;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    font-family: var(--font-tna);
}


/* Post Title Styling */
.post-title {
    padding: 0.5em;
    /* background-color: red; */
    font-size: 1.1rem;
    color: var(--bg-primary);
    text-align: center;
    margin: 0;
}

.post-title a {
    color: var(--bg-primary);
    text-decoration: none;
    transition: 0.2s ease;
    font-family: var(--font-tna);
}

.post-title a:hover {
    font-weight: 900;
    text-decoration: none;
}

.post-excerpt {
    /* background-color: red; */
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-tna);
}

.post-date {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    font-size: 11px;
}

.post-date a {
    text-decoration: none;
    color: var(--bg-primary);
    transition: all 0.3s ease;
}

.post-date a:hover {
    font-weight: 900;
}


.post-date span {
    font-family: var(--font-nfs);
    unicode-bidi: embed;
    /* text-align: left; */
}