/* ============================================================
   Datacenter Pod Section — /investments page
   ============================================================ */

.dc-pod {
    background: #F8FAFC;
    width: 100%;
}

.dc-pod__inner {
    max-width: 1444px;
    margin: 0 auto;
    padding: 63px 84px;
    display: flex;
    align-items: center;
    gap: 46px;
}

/* ── Left ── */
.dc-pod__left {
    display: flex;
    width: 651px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex-shrink: 0;
}

/* ── Title block ── */
.dc-pod__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.dc-pod__title {
    color: #040548;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.dc-pod__title-by {
    color: #040548;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline;
}

.dc-pod__subtitle {
    color: var(--Secondary-Text, #334155);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

/* ── List ── */
.dc-pod__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    margin: 0;
    padding-left: 20px;
}

.dc-pod__item {
    color: var(--Primary-Text, #040548);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* ── CTA button ── */
.dc-pod__btn {
    display: flex;
    height: 48px;
    padding: 7.801px 15.602px;
    justify-content: center;
    align-items: center;
    gap: 9.751px;
    border-radius: 35px;
    background: rgba(225, 29, 111, 0.98);
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}

/* ── Right: image ── */
.dc-pod__right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dc-pod__image {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dc-pod__inner {
        padding: 48px 40px;
        gap: 32px;
    }

    .dc-pod__left {
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .dc-pod__inner {
        flex-direction: column;
        padding: 40px 24px;
        align-items: flex-start;
    }

    .dc-pod__left {
        width: 100%;
    }

    .dc-pod__right {
        width: 100%;
    }
}
