.subscr-lazydev {
	padding: 30px;
	background-color: #f2f6f8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.subscr-title {
	font-size: 18px;
	font-weight: 700;
}

.subscr-desc {
	opacity: 0.6;
	margin-top: 15px;
}

.subscr-left {
	flex-basis: 0;
	flex-grow: 1;
	max-width: 100%;
	min-width: 50px;
}

.subscr-right {
	text-align: center;
}

.subscr-btn, .unsubscr-btn {
display: inline-flex;
align-items: center;
gap: 6px;
text-align: center;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
background-color: #2ecc71;
color: #fff;
font-size: 13px;
cursor: pointer;
transition: background 0.2s ease;
}

.subscr-btn:hover {
	 background: #27ae60;  /* чуть темнее зелёный */
}

.unsubscr-btn {
    background-color: #e74c3c;  /* красный */
}

.unsubscr-btn:hover {
	background: #c0392b;  /* чуть темнее красный */
}

.subscr-info {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 4px;
}

.subscr-info span {
    color: #2ecc71;
    font-weight: 500;
}

.artist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.artist-header__title {
    flex: 1;
}

.artist-header__subscribe {
    flex-shrink: 0;
}

@media screen and (max-width: 590px) {
    .artist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .artist-header__title h1 {
        text-align: center;
        font-size: 24px;
    }
    .artist-header__subscribe {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .subscr-btn, .unsubscr-btn {
        margin-right: 0;
    }
}

/* Список и строки */
.user-subscriptions-list { display: flex; flex-direction: column; gap: 8px; }
.sub-row-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px; 
    background: var(--bg); 
    border-radius: 8px;
    min-height: 60px;
}

/* --- НОВЫЙ БЛОК: Аватарка и имя артиста --- */
.sub-artist-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; /* Отступ между фото и текстом */
}

.sub-artist-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Круглое фото */
    overflow: hidden;
    background: #444;
    flex-shrink: 0;
}

.sub-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-artist-letter {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.sub-artist-link {
    color: var(--tt);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
/* ------------------------------------------ */

/* Контейнер кнопки */
.sub-btn-wrapper {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}

/* СБРОС АБСОЛЮТНОГО ПОЗИЦИОНИРОВАНИЯ МОДУЛЯ */
.sub-btn-wrapper .dle-subscribe-common {
    position: static !important;
    margin: 0 !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 10px 18px !important; /* Чуть уменьшил для баланса с фото */
    border-radius: 10px !important;
    font-weight: 600 !important;
    background-color: #e74e3c;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sub-btn-wrapper .dle-subscribe-common i {
    margin-right: 1px !important;
}

/* Эффект при наведении на всю строку */
.sub-row-item {
    transition: background 0.3s ease, transform 0.2s ease; /* Плавный переход */
    cursor: default;
}

.sub-row-item:hover {
    background: rgb(124 118 118 / 8%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
