.page-content {
    min-height: 60vh;
    padding: calc(var(--spacing-unit) * 10) 0;
    background-color: var(--color-white);
}

.page-content h1 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--color-text);
}

.content-block {
    margin-bottom: calc(var(--spacing-unit) * 6);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.empty-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-light);
    border-radius: calc(var(--spacing-unit) * 1);
    border: 2px dashed var(--color-sakura-light);
}

.empty-content p {
    color: var(--color-text-light);
    font-style: italic;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    text-decoration: none;
}

.last-updated {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.about-intro {
    text-align: left;
}

.about-text-content h2 {
    text-align: left;
}

.image-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 5);
    align-items: center;
}

.image-content-layout.reverse {
    direction: rtl;
}

.image-content-layout.reverse > * {
    direction: ltr;
}

.content-image {
    width: 100%;
}

.content-text h2 {
    text-align: left;
}

.values-section h2 {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 5);
    margin-top: calc(var(--spacing-unit) * 4);
}

.value-item {
    text-align: center;
}

.value-svg {
    margin-bottom: calc(var(--spacing-unit) * 2);
    display: flex;
    justify-content: center;
}

.value-item h3 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.value-item p {
    text-align: center;
}

.studio-location h2,
.instructor-section h2 {
    text-align: center;
}

.location-content,
.instructor-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 5);
    align-items: center;
    margin-top: calc(var(--spacing-unit) * 4);
}

.location-svg,
.instructor-svg {
    flex-shrink: 0;
}

.location-details,
.instructor-text {
    flex: 1;
}

.studio-address {
    margin-top: calc(var(--spacing-unit) * 3);
    padding: calc(var(--spacing-unit) * 3);
    background-color: var(--color-cream);
    border-radius: calc(var(--spacing-unit) * 1);
    border-left: 4px solid var(--color-sakura);
}

.studio-address p {
    margin-bottom: 0;
}

.join-cta {
    text-align: center;
    padding: calc(var(--spacing-unit) * 6) 0;
}

.join-cta h2 {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.join-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    justify-content: center;
}

@media (max-width: 1024px) {
    .page-content {
        padding: calc(var(--spacing-unit) * 6) 0;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block {
        margin-bottom: calc(var(--spacing-unit) * 4);
    }

    .image-content-layout {
        grid-template-columns: 1fr;
    }

    .image-content-layout.reverse {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .location-content,
    .instructor-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .page-content h1 {
        font-size: 1.75rem;
    }

    .content-block h2 {
        font-size: 1.375rem;
    }

    .content-block p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

.about-illustration {
    width: 100%;
    height: auto;
    border-radius: calc(var(--spacing-unit) * 2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
