/* Blog Wild Tent - Stile Articolo SEO */
.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #f8f9fa;
    padding-bottom: 30px;
}

.blog-category {
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin: 20px 0;
    color: #2c3e50;
    line-height: 1.2;
}

.blog-date {
    color: #7f8c8d;
    font-style: italic;
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.blog-content {
    font-size: 1.1rem;
    color: #34495e;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    border-left: 4px solid #007bff;
    padding-left: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content strong {
    color: #2c3e50;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.blog-content a:hover {
    text-decoration: underline;
}

.wild-tip-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 6px solid #f39c12;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(243,156,18,0.2);
}

.wild-tip-box strong {
    display: block;
    font-size: 1.2rem;
    color: #e67e22;
    margin-bottom: 10px;
}

.blog-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(40,167,69,0.3);
}

.blog-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.btn-primary {
    background: white;
    color: #28a745;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header h1 { font-size: 2rem; }
    .blog-featured-image img { height: 250px; }
    .blog-cta { padding: 30px 20px; }
}


.experience-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    margin-top: 80px;
}

.experience-banner h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

.experience-banner p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.exp-card {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.exp-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.exp-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.exp-card h4 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
}

.exp-card span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.btn-explore-all {
    display: block;
    background: white;
    color: #667eea;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    margin: 0 auto;
    max-width: 300px;
    transition: all 0.3s;
}

.btn-explore-all:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .experience-banner h3 { font-size: 1.6rem; }
    .experiences-grid { grid-template-columns: 1fr; }
}

.experience-teaser {
    background: #f8f9fa;
    padding: 40px 20px;
    margin-top: 60px;
    border-radius: 12px;
    border-left: 5px solid #28a745;
}

.experience-teaser .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .experience-teaser { padding: 30px 15px; }
}

