.tl-specimen {
    margin: 0 auto;
    max-width: 100%;
    font-family: 'Neue Jothama', sans-serif;
}

.tl-section {
    margin-bottom: 8vw;
}

.tl-section-title {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Hero */

.tl-font-title {
    font-size: 16px;
    margin-bottom: 2rem;
}

.tl-display {
    font-size: clamp(48px, 7vw, 140px);
    line-height: 1.05;
    outline: none;
    padding-top: 52px;
    text-align: center;
}

/* Font Info Grid */

.tl-font-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 40px;
    font-size: 14px;
}

.tl-font-info-grid div span {
    opacity: .6;
}

/* Feature Toggle */

#tl-feature-toggle label {
    margin-right: 18px;
    font-size: 13px;
}

/* Waterfall */

.tl-waterfall {
    text-align: center;
    display: grid;
    justify-content: start;
    justify-items: start;
    overflow: hidden;
    padding: 8px 0px;
    padding-top: 52px;
    -webkit-mask-image: linear-gradient(90deg, #000 65%, #ffffff00);
}

.tl-waterfall div {
    margin-bottom: 18px;
    line-height: 1.2;
}

/* Glyph Grid */

.tl-glyph-grid {
    display: grid;
    grid-template-columns: repeat(23, 1fr);
    font-size: 34px;
}

.tl-glyph-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.tl-featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.tl-featured-image img {
    width: 100%;
    max-height: 480px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.tl-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tl-btn {
    padding: 12px 24px;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border-radius: 50px;
}

.tl-btn:hover {
    background: #000;
    color: #fff;
}

.tl-btn-primary {
    background: #000;
    color: #fff;
}

/* Laptop */
@media (max-width: 1280px) {
    .tl-glyph-grid {
        display: grid;
        grid-template-columns: repeat(15, 1fr);
        font-size: 36px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .tl-glyph-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        font-size: 28px;
    }
}

/* Phone */ 
@media (max-width: 600px) {
    .tl-glyph-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        font-size: 22px;
    }
}