.album-page {
    overflow-x: hidden;
    background: #fff;
    color: #06111f;
}

.album-section {
    min-height: 287px;
    padding: 24px 0 28px;
    border-top: 1px solid #333;
}

.album-container {
    width: 1200px;
    max-width: calc(100% - 96px);
    margin: 0 auto;
}

.album-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}

.album-sidebar h1,
.album-list h2 {
    margin: 0;
    color: #06111f;
    font-family: "Oswald-Regular", Arial, sans-serif;
    font-size: 41px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.album-sidebar h1 {
    margin-bottom: 10px;
}

.album-category-toggle {
    display: none;
}

.album-categories {
    padding-left: 27px;
}

.album-categories a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.album-list h2 {
    margin-bottom: 12px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.album-card {
    text-align: center;
}

.album-thumb {
    display: flex;
    width: 100%;
    height: 178px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfcfcf;
    background: #fff;
}

.album-thumb img {
    max-width: 180px;
    max-height: 136px;
    object-fit: contain;
}

.album-card h3 {
    margin: 8px 0 0;
    color: #0d1d2d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width: 1025px) {
    .album-categories a:hover,
    .album-card:hover h3 {
        color: #d7a800;
    }
}

@media (max-width: 1024px) {
    .album-section {
        padding: 22px 0 34px;
    }
    .album-container {
        max-width: calc(100% - 40px);
    }
    .album-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 34px;
    }
    .album-sidebar h1,
    .album-list h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .album-section {
        padding: 10px 0 30px;
    }
    .album-container {
        max-width: 100%;
        padding: 0 12px;
    }
    .album-layout {
        display: block;
    }
    .album-sidebar {
        margin: 0 -12px 22px;
        background: #fff;
    }
    .album-sidebar h1 {
        display: none;
    }
    .album-category-toggle {
        display: flex;
        width: 100%;
        min-height: 58px;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        border: 0;
        background: #fff;
        color: #06111f;
        font-family: "Oswald-Regular", Arial, sans-serif;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0;
        text-align: left;
    }
    .album-category-toggle i {
        flex: 0 0 auto;
        margin-left: 12px;
        font-size: 20px;
        transition: transform .25s ease;
    }
    .album-sidebar.is-open .album-category-toggle i {
        transform: rotate(180deg);
    }
    .album-categories {
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height .3s ease, padding-bottom .3s ease;
    }
    .album-sidebar.is-open .album-categories {
        max-height: 220px;
        padding-bottom: 12px;
    }
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .album-list h2 {
        margin-bottom: 14px;
        font-size: 36px;
    }
}
