/**
 * Widget: page|other
 * Stylesheet principale
 */

/* Container principale */
.page-other {
    padding: 20px 10px;
}

/* Titolo */
.page-other .page-other-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

/* Lista */
.page-other-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-other-item {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.page-other-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header con icona, titolo e accordion */
.page-other-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icona */
.page-other-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.page-other-icon img,
.page-other-icon svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.page-other-icon i {
    font-size: 1.5rem;
    color: #fff;
}

/* Titolo link */
.page-other-link-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-other-link-title:hover {
    color: var(--website-secondary);
}

/* Bottone accordion */
.page-other-accordion-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #fff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.page-other-accordion-btn:hover {
    color: var(--website-secondary);
}

.page-other-accordion-btn[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-icon {
    transition: transform 0.3s ease;
}

/* Contenuto accordion (excerpt + bottone) */
.page-other-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    padding: 0 12px;
}

.page-other-content[aria-hidden="false"] {
    max-height: 500px;
    padding: 15px 12px 0;
    margin-top: 10px;
}

/* Excerpt */
.page-other-excerpt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Bottone */
.page-other-btn {
}

/* Responsive */
@media (max-width: 768px) {
    .page-other {
        padding: 15px;
    }

    .page-other .page-other-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .page-other-item {
        padding: 12px;
    }

    .page-other-header {
        gap: 10px;
    }

    .page-other-icon {
        width: 28px;
        height: 28px;
    }

    .page-other-link-title {
        font-size: 1rem;
    }

    .page-other-accordion-btn {
        padding: 6px;
    }

    .page-other-excerpt {
        font-size: 0.85rem;
    }

    .page-other-btn {
    }
}
