/**
 * Styles de base communs pour toutes les popups Leaflet
 *
 * @package Archarezo
 * @version 2.0.0
 */

/* Reset et base */
.archarezo-popup {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.archarezo-popup * {
    box-sizing: border-box;
}

/* Clearfix */
.archarezo-popup::after {
    content: "";
    display: table;
    clear: both;
}

/* Images */
.archarezo-popup img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Titre */
.archarezo-popup-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.archarezo-popup-title a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.archarezo-popup-title a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Site web */
.archarezo-popup-website {
    margin: 8px 0;
}

.archarezo-popup-website a {
    color: #0073aa;
    text-decoration: none;
    font-size: 13px;
}

.archarezo-popup-website a:hover {
    text-decoration: underline;
}

/* Description */
.archarezo-popup-description {
    margin: 12px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* Read More */
.archarezo-popup-readmore {
    margin: 12px 0 0 0;
    text-align: right;
}

.archarezo-popup-readmore a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.archarezo-popup-readmore a:hover {
    text-decoration: underline;
}

/* Leaflet popup adjustments */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
}

.leaflet-popup-content {
    margin: 0 !important;
    min-width: 280px;
}

/* Responsive */
@media (max-width: 600px) {
    .archarezo-popup {
        font-size: 13px;
    }

    .archarezo-popup-title {
        font-size: 15px;
    }
}
