/* ========================================
   木造建築ガイドブック - 特集カード
   ======================================== */

.wood-guide-featured {
    margin-bottom: 3rem;
}

.guide-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2) !important;
}

.guide-card {
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #2d5016;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .guide-card > div {
        grid-template-columns: 1fr !important;
    }
    
    .guide-card > div > div:first-child {
        min-height: 300px !important;
    }
    
    .guide-card > div > div:last-child {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .guide-card > div > div:first-child {
        min-height: 250px !important;
    }
    
    .guide-card > div > div:last-child {
        padding: 1.5rem !important;
    }
    
    .guide-card h3 {
        font-size: 1.5rem !important;
    }
    
    .guide-card h4 {
        font-size: 1.1rem !important;
    }
    
    .guide-card ul li {
        font-size: 0.9rem !important;
    }
}
