/* ====================== NEWS BLOCK ====================== */
.news-block {
    background: var(--home-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    margin: 2.5rem 0;
    position: relative;
}

.news-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--home-neon-light), var(--home-accent));
    opacity: 0.85;
}

.news-inner {
    display: grid;
    grid-template-columns: 580px 1fr;
    gap: 0;
    position: relative;
}

.news-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.news-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center top;
    transition: transform 0.6s ease;
}

.news-image-wrapper:hover .news-main-image {
    transform: scale(1.04);
}

.news-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    backdrop-filter: blur(6px);
}
i.fas.fa-bolt {
    color: #4fc3f7;
}
/* Реакции — на картинке (слева внизу) */
.news-reactions {
    position: absolute;
    bottom: 5px;
    left: 24px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.reaction-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Правая колонка */
.news-content {
    padding: 20px 40px 10px 40px;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--home-tx-about);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.news-title {
    font-size: 2.00rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1.1rem 0;
    color: var(--home-text-color);
}

.news-title a {
    text-decoration: none;
    color: inherit;
}

.news-description {
    line-height: 1.58;
    margin-bottom: 1.8rem;
    color: var(--home-text-color);
    flex-grow: 1;
}

/* Кнопка Read more — справа внизу */
.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(var(--home-card-bg), var(--home-card-bg)) padding-box, linear-gradient(135deg, var(--home-neon-light), var(--home-accent)) border-box;
    border: 2.5px solid transparent;
    color: var(--home-neon-light);
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(var(--home-accent-rgb), 0.35);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
    position: absolute;
    right: 26px;
    bottom: 24px;
    margin: 0px auto 0px;
}

.read-more-btn:hover {
    transform: scale(1.12) rotate(1deg);
    box-shadow: 0 0 28px rgba(var(--home-neon-light), 0.85);
    background: linear-gradient(var(--home-card-bg), var(--home-card-bg)) padding-box,
                linear-gradient(135deg, var(--home-accent), var(--home-neon-light)) border-box;
}

/* Адаптив */
@media (max-width: 1200px) {
    .news-inner { grid-template-columns: 520px 1fr; }
    .news-image-wrapper { height: 440px; }
}

@media (max-width: 915px) {
    .news-inner { grid-template-columns: 1fr; }
    .news-image-wrapper { height: 220px; }
    .news-reactions { bottom: 5px; left: 20px; }
    .read-more-btn { bottom: 20px; right: 20px; }
    .news-content { padding: 2rem; }
    .news-title { font-size: 1.85rem; }
	.news-description {margin-bottom: 3.8rem;}
}

/* === Lyrics Section Styles === */
.lyrics-grid {
    display: flex;
    gap: 25px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.lyrics-card {
background: var(--home-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--home-shadow);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid var(--radio-border);
    width: 320px;
}

.lyrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--home-neon-light), #4fc3f7);
    opacity: 0.85;
}

.lyrics-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow-hover);
}

.lyrics-cover {
position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.lyrics-cover img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.lyrics-card:hover .lyrics-cover img {
    transform: scale(1.08);
}

.lyrics-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.track-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(var(--home-accent-rgb), 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lyrics-content {
    padding: 1.5rem;
}

.lyrics-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.7rem;
    color: var(--home-text-color);
    line-height: 1.2;
}

.lyrics-title a {
    color: inherit;
    text-decoration: none;
}

.lyrics-title a:hover {
    color: #4fc3f7;
}

.lyrics-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.lyrics-date {
    color: var(--home-tx-about);
}

.lyrics-preview {
    line-height: 1.55;
    color: var(--home-text-color);
    opacity: 0.9;
    margin-bottom: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* Адаптивность */
@media (max-width: 1200px) {
    .lyrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .lyrics-grid {
        grid-template-columns: repeat(2, 1fr);
		display: grid;
    }
	.lyrics-card {
    width: 100%;
}
.lyrics-cover img {
    width: 100%;
    height: 100%;
}
}

@media (max-width: 768px) {
    .lyrics-grid {
        grid-template-columns: 1fr;
    }
    .lyrics-cover {
        height: 320px;
    }
    .lyrics-content {
        padding: 1.2rem;
    }
    .lyrics-title {
        font-size: 1.2rem;
    }
}

/* Стили для модального окна с текстами песен */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
	z-index: 2000;
}

.modal-dialog {
    background: var(--home-card-bg);
    border-radius: 16px;
    max-width: 90%;
    width: 1110px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--radio-border);
}

.modal-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--radio-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--home-text-color);
}

.close-modal {
    background: none;
    border: none;
    color: var(--home-tx-about);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--radio-border);
    text-align: right;
}

/* Двухколоночная структура для текстов */
.lyrics-text-container {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.lyrics-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lyrics-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #4fc3f7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lyrics-text,
.lyrics-translation,
.lyrics-explanation {
    line-height: 1.6;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(79, 195, 247, 0.05);
    border-left: 4px solid #4fc3f7;
    text-align: left;
    font-size: 0.95rem;
}

/* Цвета для разных секций */
.lyrics-text {
    border-left-color: #4fc3f7;
}

.lyrics-translation {
    border-left-color: #ff6b6b;
}

.lyrics-explanation {
    border-left-color: #a55eea;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .lyrics-text-container {
        flex-direction: column;
    }
    .modal-dialog {
        width: 95%;
        max-width: none;
    }
}