﻿html, body {
    position: relative;
    background-color: #fff;
    background-image: url('/Content/images/backgrounds/cignal-load-bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.cignal-load-container {
    max-width: 1312px;
    margin: 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 45px;
    width: 100%;
}

.cignal-load-header {
    /*  text-align: center;*/
    font-size: var(--font-size-hero-title);
    font-weight: 800;
    font-family: var(--font-family-head);
    color: var(--clr-text-black);
}

.cignal-load-lead {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.cignal-load-instruction {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.cignal-load-instruction-link {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--clr-text-accent);
}

.iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto !important;
}

.iframe-responsive {
    width: 100%;
    /*max-width: 500px;*/
    height: 650px;
    border: none;
    overflow: hidden;
}

.touchpoint-cards {
    display: flex;
    gap: 24px;
    width: auto;
    height: auto;
}

.touchpoint-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 49%;
    height: auto;
    flex: 0 0 auto;
    background: #FFFFFF;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 24px;
    border: none;
    background: linear-gradient(90deg, #FFA332 0%, #D41A5D 100%);
    padding: 1px;
    position: relative;
    z-index: 0;
    filter: drop-shadow(0px 4px 6px rgba(60, 60, 60, 0.2));
}

    .touchpoint-card::before {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        background: #FFFFFF;
        border-radius: 23px;
        z-index: -1;
    }

.touchpoint-card-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
    height: 100%;
}

.touchpoint-card-title {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #121212;
    text-shadow: 0 2.8px 8.4px rgba(30, 215, 96, 0.1);
}

.touchpoint-card-info {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    min-height: 240px;
}

.touchpoint-info-box {
    flex: 1;
    border: 1px solid rgba(125, 125, 125, 0.5);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.touchpoint-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #2B2B2B;
}

    .touchpoint-info-row a {
        color: #000;
    }

.touchpoint-bold {
    font-weight: 800;
}

    .touchpoint-bold a {
        font-weight: 800;
        text-decoration: none;
    }

/* --- Responsive styles copied from hero-article.css --- */
@media screen and (max-width: 1400px) {
    .cignal-load-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 992px) {
    .cignal-load-header {
        font-size: var(--font-size-hero-title-md);
        line-height: 1.2;
    }

    .touchpoint-cards {
        flex-direction: column;
    }

   .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .iframe-container {
        padding: 0px 15px;
    }
}

@media screen and (max-width: 768px) {
    .cignal-load-container {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .cignal-load-header {
        font-size: var(--font-size-hero-title-sm);
        margin-top: 8px;
        margin-bottom: 20px;
    }

    .touchpoint-cards {
        flex-direction: column;
    }

    .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

}

@media screen and (max-width: 576px) {
    .cignal-load-container {
        padding: 10px 14px;
    }

    .cignal-load-header {
        font-size: var(--font-size-hero-title-xs);
        line-height: 1.2;
        margin-top: 6px;
        margin-bottom: 16px;
    }

    .touchpoint-cards {
        flex-direction: column;
        padding-bottom: 15px;
    }

    .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .iframe-container {
        padding: 0px 15px;
    }
    
    .touchpoint-card-info {
        flex-direction: column;
    }
}
