.mag-latest-posts {
    width: 100%;
}

.mag-lp-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mag-lp-title {
    font-size: 1.875rem;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}

.mag-lp-line {
    height: 1px;
    flex-grow: 1;
    background-color: var(--mag-c-muted-pastel);
}

.mag-lp-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mag-lp-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mag-lp-article {
        grid-template-columns: repeat(10, 1fr);
    }
}

.mag-lp-img-col {
    overflow: hidden;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .mag-lp-img-col { grid-column: span 4 / span 4; }
    .mag-order-2 { order: 2; }
}

.mag-lp-img {
    aspect-ratio: 4/3;
    background-position: center;
    background-size: cover;
    transition: transform 0.7s ease;
}

.mag-lp-img-col a { display: block; height: 100%; }

.mag-lp-article:hover .mag-lp-img {
    transform: scale(1.05);
}

.mag-lp-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .mag-lp-content-col { grid-column: span 6 / span 6; }
    .mag-text-right { text-align: right; }
}

.mag-lp-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--mag-c-primary-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.mag-lp-post-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.375;
    margin-bottom: 1rem;
}

.mag-lp-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mag-lp-article:hover .mag-lp-post-title a {
    color: var(--mag-c-primary-gold);
}

.mag-lp-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.mag-lp-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    font-weight: 700;
}

.mag-justify-end {
    justify-content: flex-end;
}

.mag-lp-dot {
    width: 4px;
    height: 4px;
    background-color: var(--mag-c-muted-pastel);
    border-radius: 50%;
}

.mag-lp-more-btn {
    display: block;
    width: 100%;
    margin-top: 5rem;
    padding: 1rem 0;
    border: 1px solid var(--mag-c-muted-pastel);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    text-align: center;
    border-radius: 9999px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mag-lp-more-btn:hover {
    background-color: var(--mag-c-muted-pastel);
    color: white;
}
