.deal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 40px;
}

.deal-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: var(--text-main);
}

.deal-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--text-main);

}

.deal-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    padding-bottom: 24px;
}

.deal-item {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid;
    border-image-source: linear-gradient(92.1deg, #FFFFFF 1.23%, rgba(255, 255, 255, 0.32) 99.83%);
    box-shadow: var(--shadow-main);
    transition: all var(--transition-base);
    cursor: pointer;
}

.deal-item:hover {
    box-shadow: var(--shadow-hover);
}

.deal-item-image-container {
    max-width: 154px;
    max-height: 154px;
    width: 100%;
    height: 100%;
}

.deal-item-image-container img {
    width: 100%;
    height: 100%;
    border-radius: 15.4px;
    opacity: 1;

    object-fit: contain;
}

.deal-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deal-item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--text-main);
}

.deal-item-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #53535394;
}

.deal-item-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-main);
}

.deal-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.deal-item-tag {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: var(--text-main);
    padding: 2px 16px;
    border: 0.5px solid #0000001A;
    background: #ECECF1;
    border-radius: 10px;
}

.deal-item-action-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    bottom: 22px;
    transition: all var(--transition-base);
}

.deal-item-action-button:hover {
    transform: scale(1.2);
}

@media (max-width: 1600px) {
    .deal-header {
        gap: 14px;
    }

    .deal-title {
        font-size: 32px;
    }

    .deal-item-title {
        font-size: 20px
    }

    .deal-item-action-button {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 1279px) {
    .deal-header {
        padding-bottom: 28px;
    }

    .deal-title {
        font-size: 28px;
    }

    .deal-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding-bottom: 20px;
    }

    .deal-item-title {
        font-size: 20px
    }

    .deal-item-action-button {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 1023px) {
    .deal-header {
        padding-bottom: 20px;
        gap: 12px;
    }

    .deal-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .deal-header {
        gap: 8px;
    }

    .deal-subtitle {
        font-size: 12px;
    }

    .deal-item {
        gap: 12px;
        padding: 10px;
        border-radius: 12px;
    }

    .deal-item-image-container {
        max-width: 110px;
        max-height: 100px;
    }

    .deal-item-title {
        font-size: 14px;
    }

    .deal-item-subtitle {
        font-size: 12px;
    }

    .deal-item-description {
        font-size: 12px;
    }

    .deal-item-tag {
        font-size: 12px;
        padding: 2px 11px;
    }

    .deal-item-action-button {
        left: 12px;
        bottom: 12px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 374px) {
    .deal-header {
        padding-bottom: 14px;
    }

    .deal-title {
        font-size: 20px;
    }

    .deal-item {
        gap: 8px;
        padding: 8px;
    }
    .deal-item-image-container {
        max-width: 68px;
        max-height: 94px;
    }
}