/* Стили для дополнительных полей */
.xfields-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(120, 191, 155, 0.05);
    border-radius: 8px;
    border-left: 3px solid #78BF9B;
}

.xfield-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.xfield-item:last-child {
    margin-bottom: 0;
}

.xfield-label {
    font-weight: 600;
    color: #2E6D4D;
    min-width: 90px;
    margin-right: 10px;
    flex-shrink: 0;
}

.xfield-value {
    color: #4a5568;
    word-break: break-word;
}

.xfield-value a {
    color: #78BF9B;
    text-decoration: none;
    border-bottom: 1px dashed rgba(120, 191, 155, 0.5);
    transition: all 0.3s ease;
}

.xfield-value a:hover {
    color: #FD8D0D;
    border-bottom-color: #FD8D0D;
}


/* Компактный баннер-аватар издателя */
.publisher-item {
    align-items: center !important;
}

.publisher-avatar {
    width: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.publisher-avatar a {
    display: block;
    width: 100%;
    height: 100%;
}

.publisher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.publisher-avatar:hover {
    border-color: #78BF9B;
    box-shadow: 0 4px 10px rgba(120, 191, 155, 0.2);
    transform: translateY(-2px);
}

.publisher-avatar:hover img {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .publisher-avatar {
        width: 50px;
        height: 50px;
    }
}


/* Адаптивность */
@media (max-width: 768px) {
    .xfield-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .xfield-label {
        margin-bottom: 0.3rem;
    }
}