.program {
    padding: 128px 60px;
    position: relative;
}
.program__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 893px;
    margin: 0 auto;
    position: relative;
}

.program__blob {
    position: absolute;
    height: 700px;
    width: auto;
    z-index: -1;
    pointer-events: none;
} 


.program__blob.purple {
    top: -200px;
    left: -300px;
}

.program__blob.yellow {
    top: calc(50% - 350px);
    right: -350px;
}

.program__smere {
    position: absolute;
    bottom: -400px;
    left: -300px;
    transform: rotate(-9deg);
}

.program-card {
    background: #F5F4F0;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #DDD;
    transition:
        transform 0.22s ease;
    cursor: default;
}
.program-card:hover {
    transform: translateY(-3px);
}
.program-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}
.program-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-black);
    flex: 1;
}
.program-card__time {
    display: flex;
    gap: 7px;
    align-items: center;
    flex-shrink: 0;
}
.program-card__hour {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    letter-spacing: -0.48px;
    line-height: 1.3;
}
.program-card__duration {
    background: #e8e8e8;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gray);
    letter-spacing: -0.2px;
}
.program-card__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}
.program-card__speaker {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}
.program-card__logo {
    position: absolute;
    top: 38px;
    right: 24px;
    max-height: 50px;
    max-width: 180px;
}
.program-card__role {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-black);
}
.program-card__person {
    display: flex;
    align-items: center;
    gap: 5px;
}
.program-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #f5f4f0;
    border: 2.2px solid #fafaf8;
    overflow: hidden;
    flex-shrink: 0;
}
.program-card__avatar picture,
.program-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.program-card__name {
    font-size: 20px;
    font-weight: 700;
    color: rgba(10, 10, 10, 0.8);
    line-height: 1.4;
}
.program-card__company {
    font-size: 14px;
    line-height: 1.4;
    color: #3E64FF;
    font-weight: 700;
}

.program-card__description {
    color: rgba(10, 10, 10, 0.80);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.program-card__decor {
    position: absolute;
    z-index: 1;
    width: auto;
    display: flex;
    pointer-events: none;
}

.program-card__decor-img {
    height: 100%;
    width: auto;
}

.program-card__decor.top {
    top: -105px;
    left: -120px;
    height: 300px;
}

.program-card__decor.bottom {
    bottom: -215px;
    right: -120px;
    height: 300px;
}

@media (max-width: 1180px) {
    .program__list {
        max-width: 100%;
    }

    .program-card__decor.bottom {
        right: -150px;
    }
}
@media (max-width: 900px) {
    .program {
        padding: 80px 24px;
    }
    .program-card {
        padding: 28px 24px;
    }
    .program-card__title {
        font-size: 22px;
    }
}
@media (max-width: 600px) {
    .program {
        padding: 60px 16px;
    }
    .program-card {
        padding: 20px 16px;
        gap: 16px;
    }
    .program-card__header {
        gap: 12px;
        flex-direction: column-reverse;
    }
    .program-card__title {
        font-size: 18px;
    }
    .program-card__hour {
        font-size: 20px;
    }
    .program-card__speaker {
        padding: 16px;
    }
    .program-card__name {
        font-size: 16px;
    }
    .program-card__logo {
        top: 16px;
        right: 16px;
        max-height: 30px;
        max-width: 120px;
    }

    .program-card__decor.top {
        top: -35px;
        left: -40px;
        height: 120px;
    }

    .program-card__decor.bottom {
        bottom: -95px;
        right: -40px;
        height: 130px;
    }
}
