/**
 * Station Metadata Styles
 *
 * Styling for frequency, website, and social media display on station pages
 *
 * @package RadioStation
 * @since 1.0.0
 */

/* Main Container */
.station-metadata {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Section Container */
.station-metadata__section {
    margin-bottom: 1.5rem;
}

.station-metadata__section:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.station-metadata__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

/* Frequencies List */
.station-metadata__frequencies {
    list-style: none;
    padding: 0;
    margin: 0;
}

.station-metadata__frequencies li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.station-metadata__frequencies li:last-child {
    border-bottom: none;
}

.station-metadata__frequencies strong {
    display: inline-block;
    min-width: 120px;
    color: #555;
}

/* Website Link */
.station-metadata__section p {
    margin: 0;
}

.station-metadata__section a {
    color: #0066cc;
    text-decoration: none;
}

.station-metadata__section a:hover {
    text-decoration: underline;
}

/* Social Media List */
.station-metadata__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.station-metadata__social li {
    margin: 0;
}

.station-metadata__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}

.station-metadata__social a:hover {
    background: #e0e0e0;
    text-decoration: none;
}

.station-metadata__social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .station-metadata {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .station-metadata__section {
        margin-bottom: 1rem;
    }

    .station-metadata__title {
        font-size: 1.125rem;
    }

    .station-metadata__frequencies strong {
        min-width: 100px;
    }

    .station-metadata__social {
        gap: 0.5rem;
    }

    .station-metadata__social a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .station-metadata__frequencies strong {
        display: block;
        min-width: auto;
        margin-bottom: 0.25rem;
    }

    .station-metadata__social {
        flex-direction: column;
        gap: 0.5rem;
    }

    .station-metadata__social a {
        width: 100%;
        justify-content: center;
    }
}
