/* ============================================
   LICENCES PAGE
   ============================================ */

/* Hero */
.licence-hero {
    padding: 160px 0 60px;
    text-align: center;
}
.licence-hero .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}
.licence-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Content */
.licence-content {
    padding: 40px 0 100px;
}
.licence-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 24px;
    transition: border-color 0.3s;
}
.licence-card:hover {
    border-color: var(--primary);
}
.developer-card {
    border-color: rgba(0, 255, 135, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 135, 0.05), rgba(10, 14, 23, 0.95));
}
.licence-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 255, 135, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--primary);
}
.licence-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.licence-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}
.licence-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}
.licence-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.licence-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.licence-details li:last-child {
    border-bottom: none;
}
.licence-details a {
    color: var(--primary);
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.licence-details a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .licence-card {
        padding: 24px 20px;
    }
}
