/* TastyVocab Specific Styles */
:root {
    --tastyvocab-brand: #FF9800;
    --tastyvocab-brand-2: #FFB74D;
    --tastyvocab-text-1: #5D4037;
    --tastyvocab-text-2: #795548;
    --tastyvocab-bg: #fff;
    --tastyvocab-bg-body: #FFFBF5;
}

body.page-tastyvocab {
    margin: 0;
    color: var(--tastyvocab-text-1);
    background: var(--tastyvocab-bg-body);
}

.page-tastyvocab .container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero */
.tastyvocab-hero {
    padding: 140px 0 32px;
}

.tastyvocab-hero-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
}

.tastyvocab-app-icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    justify-self: center;
}

.page-tastyvocab h1 {
    margin: 0 0 6px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--tastyvocab-text-1);
}

.tastyvocab-lead {
    color: var(--tastyvocab-text-2);
    font-size: 1.05rem;
    margin: 0 0 12px;
}

/* Content */
.tastyvocab-content {
    padding: 12px 0 28px;
}

.tastyvocab-long-copy {
    color: var(--tastyvocab-text-2);
    line-height: 1.9;
    font-size: 1.02rem;
    white-space: pre-line;
}

.tastyvocab-long-copy h3 {
    color: var(--tastyvocab-text-1);
    font-size: 1.15rem;
    line-height: 1;
    margin: 24px 0 12px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.tastyvocab-long-copy ul {
    padding-left: 20px;
    margin: 12px 0;
}

.tastyvocab-long-copy li {
    margin-bottom: 8px;
}

/* Button */
.cta {
    display: flex;
    gap: 12px;
}

.btn-compact {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* Icons */
.tastyvocab-icon {
    width: 18px;
    height: 18px;
    color: var(--tastyvocab-brand);
    flex-shrink: 0;
    margin-bottom: 2px;
}

/* Gallery */
.tastyvocab-gallery {
    display: flex;
    gap: 16px;
    margin: 26px 0 56px;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tastyvocab-gallery::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.tastyvocab-gallery {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tastyvocab-gallery img {
    width: 200px;
    flex: 0 0 auto;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

@media (max-width: 640px) {
    .tastyvocab-hero-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta {
        justify-content: center;
    }
}