@media (min-width: 768px) {
  .latest-posts .grid {
    --min: 30ch;
    --gap: 2rem;
    display: grid;
    grid-gap: var(--gap);
    grid-template-columns: 1fr 1fr 1fr;
    align-items: top;
    text-align: left;
  }
}

.latest-posts .grid a {
    display: block;
    border-radius: 8px;
    height: 100%;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(10,45,82,0.1);
}

.latest-posts .col {
  margin-bottom: 32px;
}
.latest-posts .grid a:hover {
    text-decoration: none;

}
.latest-posts .details {
    padding: 16px;
}
.latest-posts img {
    border-radius: 8px;
    height: 250px;
    object-fit: cover;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.latest-posts .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black);
}
.latest-posts .category {
    font-size: 14px;
    line-height: 19px;
    font-weight:600;
    color: var(--magenta-800);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.latest-posts p {
    color: var(--black);
}
.latest-posts .more {
    font-weight: 400;
    color: var(--blue);
    text-decoration: underline;
    font-size: 18px;
    position: relative;
    margin-bottom: 16px;
}
.latest-posts .more i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-left: 4px;
}