/* Guides list and content – LandsOfRuin.com */
.m-guide .m-content { max-width: 720px; margin-left: auto; margin-right: auto; }
.m-guide .m-content p { line-height: 1.8; }

/* Guides page: cards equal height, buttons on one level + highlighted */
.m-card-grid { align-items: stretch; }
.m-card { display: flex; flex-direction: column; }
.m-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem;
}
.m-card__body > .m-card__link {
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--aged-gold);
    color: var(--aged-gold);
    background: rgba(184, 151, 95, 0.12);
    transition: background 0.25s ease, color 0.25s ease;
    box-shadow: 0 2px 8px rgba(184, 151, 95, 0.2);
}
.m-card__body > .m-card__link:hover {
    background: var(--aged-gold);
    color: var(--ivory-cream);
}
