/* ============================================
   madmonster-social.css
============================================ */

main {
    gap: 0;
}

/* ── Hero ── */
.campaign-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: clamp(36px, 6vw, 82px);
    font-weight: 700;
    margin: 0;
}

.navigation-back {
    margin: 30px 0;
}

/* ============================================
   WHAT WE DO Heading Section
============================================ */
.social-wwd-section {
    position: relative;
    background: #FAFAFA;
    padding: 70px 24px 60px;
    overflow: hidden;
}

/* ── Decorative images ── */
.social-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.social-deco-vector1 {
    top: 0;
    right: 0;
}

.social-deco-vector2 {
    bottom: 0;
    left: 0;
}

.social-deco-mic {
    top: 0;
    right: 10px;
}

/* ── Inner container ── */
.social-wwd-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   6 Items Section
============================================ */
.social-items-section {
    background: #F4F6F7;
    padding: 50px 24px 60px;
}

.social-items-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Heading ── */
.social-wwd-heading h2 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    color: #111;
    line-height: 1.1;
}

.social-highlight {
    background: #FFE600;
    padding: 0 6px;
    border-radius: 4px;
}

.social-wwd-heading p {
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.75;
    color: #333;
    margin: 0;
    max-width: 640px;
}

/* ── 6 Items Grid ── */
.social-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* black circle icon — same as MadMonsterInfo */
.social-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.social-item-label {
    font-size: clamp(19px, 2.1vw, 26px);
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

/* ============================================
   Gallery Section
============================================ */
.social-gallery-section {
    position: relative;
    background: #FAFAFA;
    padding: 60px 24px 120px;
    overflow: hidden;
}

.social-deco-element02 {
    bottom: 0;
    right: 0;
}

.social-deco-logo06 {
    bottom: 20px;
    left: 10px;
}

/* ── Inner container ── */
.social-gallery-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Client Logo Grid (4 columns) ── */
.social-client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 40px;
    align-items: center;
}

.social-client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-client-item img {
    width: 100%;
    max-width: 245px;
    height: auto;
    object-fit: contain;
    display: block;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    padding: 16px;
}

/* ── Social link icons under logo ── */
.social-client-links {
    display: flex;
    gap: 8px;
    margin-top: -14px;
    width: 100%;
    max-width: 245px;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.social-client-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: #444;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-client-link:hover {
    transform: translateY(-3px);
    background: #222;
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1024px) {
    .social-client-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 28px;
    }
}

@media (max-width: 768px) {
    .social-items-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .social-deco-vector1,
    .social-deco-vector2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .social-client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-deco-mic,
    .social-deco-element02,
    .social-deco-logo06 {
        display: none;
    }
}
