
.shooting {
    padding: 110px 0;
    background: #ffffff;
    color: #333;
    position: relative;
}

.shooting__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shooting__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
    width: 100%;
    max-width: 1200px;
}

.shooting__item {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.shooting__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(253, 135, 6, 0.15);
    border-color: rgba(253, 135, 6, 0.2);
}

.shooting__icon-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.shooting__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FD8706 0%, #ff9d2e 100%);
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(253, 135, 6, 0.3);
    transition: all 0.3s ease;
}

.shooting__item:hover .shooting__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(253, 135, 6, 0.4);
}

.shooting__num {
    font-family: "Raleway", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FD8706;
    line-height: 1;
    opacity: 0.3;
}

.shooting__content-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.shooting__subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.shooting__text {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.shooting__connector {
    display: none;
}

.title-section {
    font-size: 46px;
    margin-bottom: 77px;
    position: relative;
    z-index: 50;
}

.title-section::before {
    content: "";
    height: 10px;
    width: 100%;
    background-color: #ffd2a0;
    position: absolute;
    display: block;
    bottom: 7px;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 1279px) {
    .shooting {
        padding: 80px 0;
    }

    .shooting__content {
        gap: 40px 50px;
    }

    .shooting__item {
        padding: 35px;
    }

    .shooting__icon {
        width: 70px;
        height: 70px;
    }

    .shooting__icon svg {
        width: 35px;
        height: 35px;
    }

    .shooting__num {
        font-size: 40px;
    }

    .shooting__subtitle {
        font-size: 22px;
    }

    .shooting__text {
        font-size: 15px;
    }

    .title-section {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .title-section::before {
        height: 8px;
        bottom: 5px;
    }
}

@media screen and (max-width: 967px) {
    .shooting {
        padding: 60px 0;
    }

    .shooting__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shooting__item {
        padding: 30px;
    }

    .shooting__icon {
        width: 65px;
        height: 65px;
    }

    .shooting__icon svg {
        width: 32px;
        height: 32px;
    }

    .shooting__num {
        font-size: 36px;
    }

    .shooting__subtitle {
        font-size: 20px;
    }

    .shooting__text {
        font-size: 14px;
    }

    .title-section {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 655px) {
    .shooting {
        padding: 50px 0;
    }

    .shooting__item {
        padding: 25px;
    }

    .shooting__icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .shooting__icon svg {
        width: 28px;
        height: 28px;
    }

    .shooting__num {
        font-size: 32px;
    }

    .shooting__subtitle {
        font-size: 18px;
    }

    .shooting__text {
        font-size: 13px;
        line-height: 1.6;
    }

    .shooting__icon-wrapper {
        margin-bottom: 20px;
    }

    .shooting__content-text {
        gap: 12px;
    }

    .title-section {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .title-section::before {
        height: 6px;
        bottom: 3px;
    }
}