.links-forum {
    padding: 4rem 2rem;
    background: #fafafa;
    text-align: center;
}

.links-forum h2 {
    font-size: 2.2em;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #000;
}

.forum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.forum-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.forum-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.forum-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.forum-content h3 {
    margin-top: 0;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.forum-content p {
    font-size: 0.95em;
    line-height: 1.4;
    color: #333;
    flex-grow: 1;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-link:hover {
    background: #333;
}
