﻿:root {
    --accent-color: #41C7C7;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --bg-gray: #f8f9fa;
    --font-size-base: 1rem;
    --font-size-sm: 1rem;
    --font-size-h3: 1.8rem;
    --font-size-h4: 1.1rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: white;
}

a {
   color: #41C7C7;
}



    .partner-banner {
        background-color: #F5F5F5;
        color: var(--text-dark);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 64px;
        overflow-y: auto;
        position: relative;
        height: 100%;
    }

    .banner-content-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin: auto 0;
    }

    .content-section {
        border-radius: 12px;
        padding: 40px;
        background-color: #fff;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    }

    .section-header {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid transparent;
    }

    .section-title {
        font-size: var(--font-size-h3);
        font-weight: 200;
        letter-spacing: 0.5px;
        color: #222222;
        margin: 0;
        line-height: 1.2;
    }

    .intro-text {
        font-size: var(--font-size-base);
        line-height: 1.6;
        color: var(--text-gray);
        margin-bottom: 24px;
    }

    .platforms-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .platform-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 16px;
        border-radius: 10px;
        background-color: var(--bg-gray);
        text-decoration: none;
        transition: all 0.2s ease;
        border: 1px solid transparent;
        height: 100%;
        gap: 15px;
    }

        .platform-card:hover {
            background-color: #fff;
            border-color: var(--accent-color);
        }

    .card-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

        .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .card-text-wrapper {
        display: flex;
        flex-direction: column;
    }

    .card-title {
        font-size: var(--font-size-base);
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 4px;
        line-height: 1.3;
    }



    .card-desc {
        font-size: 1rem;
        color: #666;
        line-height: 1.4;
    }

    .update-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 0, 0, 0.05);
        color: #222;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        height: 34px;
    }

        .update-badge i {
            font-size: 0.9rem;
        }

    .news-desc {
        font-size: var(--font-size-base);
        line-height: 1.6;
        color: var(--text-gray);
        margin-bottom: 20px;
    }

    .strategies-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .strategy-row {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        border-radius: 8px;
        background: #fff;
        border: 1px solid #eee;
    }

    .strategy-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .icon-leader,
    .icon-profit {
        background: rgba(0, 0, 0, 0.05);
        color: #555555;
        transition: all 0.3s ease;
    }

    .strategy-text strong {
        display: block;
        font-size: var(--font-size-base);
        color: var(--text-dark);
        margin-bottom: 4px;
    }

    .strategy-text span {
        font-size: var(--font-size-sm);
        color: #777;
        display: block;
        line-height: 1.3;
    }

    .event-image-box {
        width: 100%;
        height: 160px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        position: relative;
    }

        .event-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .date-tag {
        width: fit-content;
        display: inline-flex;
        margin-bottom: 8px;
        margin-top: 4px;
        background: rgba(0,0,0,0.05);
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #1a1a1a;
        white-space: nowrap;
    }

    .event-info h4 {
        font-size: var(--font-size-h4);
        font-weight: 600;
        margin: 0 0 10px 0;
        color: var(--text-dark);
    }

    .event-info p {
        font-size: var(--font-size-base);
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
    }

    .highlight-text {
        color: var(--accent-color);
        font-weight: 700;
    }

.event-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;    
}

    .event-image-wrapper {
        width: 190px;
        height: 120px;
        background-color: #101010;
        border-radius: 8px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 1px solid #eee;
    }

        .event-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

    .event-content {
        display: flex;
        flex-direction: column;
        padding-top: 2px;
    }

        .event-content h4 {
            font-size: var(--font-size-h4);
            font-weight: 600;
            margin: 0 0 6px 0;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .event-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.5;
            margin: 0;
        }

    .linkedin-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: rgba(0, 0, 0, 0.05);
        color: #222;
        padding: 6px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s ease;
        border: 1px solid transparent;
        height: 34px;
    }

        .linkedin-btn:hover {
            background-color: rgba(0, 0, 0, 0.1);
            color: #000;
        }

        .linkedin-btn i {
            font-size: 1rem;
        }

    .sub-event-header {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #999;
        margin: 24px 0 12px 0;
        font-weight: 700;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

        .sub-event-header:first-of-type {
            margin-top: 0;
        }

    .video-thumbnail {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        cursor: pointer;
        transition: opacity 0.2s;
    }

        .video-thumbnail:hover .play-icon-circle {
            transform: scale(1.1);
            background: #ff0000;
            border-color: #ff0000;
        }

    .play-icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
        z-index: 2;
    }

        .play-icon-circle i {
            font-size: 14px;
            margin-left: 2px;
        }

    .video-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }

    .speakers-info {
        font-size: 0.8rem;
        color: #888;
        margin-top: 8px;
        font-style: italic;
        line-height: 1.4;
    }

        .speakers-info strong {
            color: var(--text-dark);
            font-style: normal;
            font-weight: 600;
        }

    @media (max-width: 1360px) {
        .partner-banner {
            order: 2;
            width: 100%;
            height: auto;
            overflow-y: visible;
            padding: 40px 20px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            background-color: #f8f9fa;
        }

        .banner-content-wrapper {
            margin: 0;
            gap: 24px;
        }

        .platforms-grid {
            grid-template-columns: 1fr;
        }

        .event-card {
            flex-direction: column;
            align-items: center;
        }

        .event-image-wrapper {
            width: 100%;
            max-width: 300px;
            height: 160px;
            margin-bottom: 10px;
        }

        .event-content {
            width: 100%;
            text-align: left;
        }

        .content-section {
            padding: 24px;
        }

        .section-header {
            flex-wrap: wrap;
            gap: 16px;
        }
    }