/* Small original-content layer so the News page still feels like MMA Matlock. */

.news-matlock-latest {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: .62rem;
    align-items: center;
    margin: .45rem 0 .85rem;
    padding: .48rem .55rem;
    border: 1px solid #3f3f3f;
    background: #090909;
}

.news-matlock-label {
    color: var(--accent, #ff4a54);
    font: 700 .48rem/1 "Courier New", monospace;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-matlock-copy {
    min-width: 0;
}

.news-matlock-copy h2 {
    margin: 0;
    color: #fff;
    font-family: "Gobold", Impact, sans-serif;
    font-size: clamp(.9rem, 2vw, 1.2rem);
    line-height: 1;
    text-transform: uppercase;
}

.news-matlock-copy h2 a {
    color: inherit;
    text-decoration: none;
}

.news-matlock-copy h2 a:hover,
.news-matlock-copy h2 a:focus-visible {
    color: var(--accent, #ff4a54);
}

.news-matlock-meta {
    margin: .15rem 0 0;
    color: #777;
    font: 400 .5rem/1.25 "Courier New", monospace;
}

.news-matlock-action {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: .3rem .48rem;
    border: 1px solid #555;
    color: #fff;
    font: 700 .48rem/1 "Courier New", monospace;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-matlock-action:hover,
.news-matlock-action:focus-visible {
    border-color: var(--accent, #ff4a54);
}

@media (max-width: 620px) {
    .news-matlock-latest {
        grid-template-columns: 1fr auto;
    }

    .news-matlock-label {
        grid-column: 1 / -1;
    }
}

@media (max-width: 390px) {
    .news-matlock-latest {
        grid-template-columns: 1fr;
    }

    .news-matlock-action {
        justify-self: start;
    }
}
