/* ============================================
 * Auto-Content Styles for Tier 3 State Parks
 * 
 * These styles are loaded for parks that use the
 * dynamically generated content system.
 * ============================================ */

/* Activities Grid */
.sp-auto-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin: 1.5rem 0 2rem;
}

.sp-auto-activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: #f8faf9;
    border: 1px solid #e8ede9;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3b33;
    transition: all 0.2s ease;
    text-align: center;
}

.sp-auto-activity-card:hover {
    background: #eef5f0;
    border-color: #2d6a4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.12);
    color: #2d6a4f;
}

.sp-auto-activity-icon {
    font-size: 24px;
    line-height: 1;
}

.sp-auto-activity-icon svg {
    width: 28px;
    height: 28px;
    stroke: #2d6a4f;
}

.sp-auto-activity-name {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Visitor Info Cards */
.sp-auto-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin: 1.5rem 0 2rem;
}

.sp-auto-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e8ede9;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sp-auto-info-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5f0;
    border-radius: 8px;
    color: #2d6a4f;
}

.sp-auto-info-card-icon svg {
    width: 20px;
    height: 20px;
}

.sp-auto-info-card-body {
    flex: 1;
    min-width: 0;
}

.sp-auto-info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7c70;
    margin-bottom: 4px;
}

.sp-auto-info-card-value {
    font-size: 0.95rem;
    color: #2d3b33;
    word-break: break-word;
}

.sp-auto-info-card-value a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 500;
}

.sp-auto-info-card-value a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .sp-auto-activities-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    .sp-auto-activity-card {
        padding: 12px 8px;
    }

    .sp-auto-activity-name {
        font-size: 0.78rem;
    }

    .sp-auto-info-cards {
        grid-template-columns: 1fr;
    }
}