.social-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.social-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none !important;
    color: #0a2b4a;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card,
.social-card:hover {
    color: #0a2b4a;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-card span {
    font-weight: 600;
}

.social-card .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
}

.social-card .action {
    margin-top: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.social-card svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* BRAND COLORS */
.social-card.linkedin {
    border-top: 4px solid #0077b5;
    color: #0077b5;
}

.social-card.twitter {
    border-top: 4px solid #000;
    color: #000000;
}

.social-card.youtube {
    border-top: 4px solid #ff0000;
    color: #ff0000;
}

.social-card.xing {
    border-top: 4px solid #006567;
    color: #006567;
}

.archive-slide {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    background: #f7f8fa;
}

.archive-slide.open {
    max-height: 10000px;
    /* large enough for content */
}

.archive-news {
    background: #f1f5f9;
    padding: 60px 0;
    margin-bottom: 16px;
}

.archive-box {
    text-align: center;
}

.btn-primary {
    background: rgba(181, 3, 39, 1);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
}

.btn-secondary {
    border: 1px solid rgba(181, 3, 39, 1);
    padding: 10px 18px;
    border-radius: 6px;
    color: rgba(181, 3, 39, 1);
    background-color: white;
    cursor: pointer;
}