/* Unique CSS for Ayurveda Section */
.ayur-wisdom-section-2026 {
    padding: 60px 20px;
    background-color: #fcf9f2; /* Light natural background for Ayurveda theme */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.ayur-wisdom-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ayur-wisdom-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5e3b; /* Herbal Green Color */
    margin-bottom: 10px;
    font-weight: 700;
}
.ayur-wisdom-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}
.ayur-wisdom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.ayur-wisdom-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eef2ed;
}
.ayur-wisdom-card:hover {
    transform: translateY(-5px);
}
.ayur-wisdom-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}
.ayur-wisdom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.ayur-wisdom-content {
    padding: 20px;
}
.ayur-wisdom-name {
    font-size: 1.3rem;
    color: #222;
    margin: 0 0 5px 0;
    font-weight: 600;
}
.ayur-wisdom-designation {
    font-size: 0.95rem;
    color: #b37d14; /* Warm Gold/Amber color */
    margin: 0 0 15px 0;
    font-weight: 500;
}
.ayur-wisdom-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .ayur-wisdom-main-title { font-size: 2rem; }
    .ayur-wisdom-grid { grid-template-columns: 1fr; }
}