.album-section {
    padding: var(--space-100-30) 0;
    width: 100%;
    max-width: 1030px !important;
}

.album-section h2 {
    margin-bottom: var(--space-48-24);
    text-align: center;
}

.album-section .album-content {
    display: flex;
    gap: 20px;
    max-width: 1030px;
    margin-inline: auto;
}

.album-section .album-image,
.album-section .content {
    flex: 1;
}

.album-section .album-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.album-section .content p {
    color: var(--color-dark);
    margin-bottom: 16px;
}

.album-section .stream-links {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.album-section .stream-links span {
    font-size: 15px;
    font-weight: 500;
}

.stream-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0;
}

.stream-links .icon {
    width: 32px;
    height: 32px;
}

.stream-links .spotify {
    background: #1db954;
}

.stream-links .music2 {
    background: #fa2d48;
}

.stream-links .youtube2 {
    background: #ff0000;
}

/* Responsive */
@media (max-width: 992px) {
    .album-section .album-content {
        display: flex;
        flex-direction: column;
    }
}