.hw-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.hw-section {
    margin-bottom: 60px;
}

.hw-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.hw-cta {
    color: #065f46;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 30px;
}

.hw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.hw-card {
    text-decoration: none;
    color: #064e3b;
    background: rgba(16, 185, 129, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 18px;
    padding: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.hw-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 12px;
}

.hw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
}

.hw-glass {
    background: rgba(16, 185, 129, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.hw-link {
    color: #047857;
    font-weight: 600;
    text-decoration: none;
}

.hw-link:hover {
    text-decoration: underline;
}

.hw-author {
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgba(16, 185, 129, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.hw-author img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(16, 185, 129, 0.45);
    background: rgba(16, 185, 129, 0.15);
    padding: 4px;
}

@media (max-width: 768px) {
    .hw-author {
        flex-direction: column;
        text-align: center;
    }

    .hw-author img {
        margin-bottom: 12px;
    }
}