.tackle-content {
    padding: 65px 0 80px;
}

.tackle-content .container {
    max-width: 1050px;
    margin: 0 auto;
}

.tackle-intro,
.tackle-practical {
    max-width: 800px;
    margin: 0 auto 65px;
}

.tackle-intro p,
.tackle-practical p {
    line-height: 1.8;
}

.tackle-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    margin-bottom: 75px;
}

.tackle-feature.reverse .tackle-feature-text {
    order: 2;
}

.tackle-feature.reverse .tackle-visual {
    order: 1;
}

.tackle-feature-text h2 {
    margin-bottom: 18px;
}

.tackle-feature-text p {
    line-height: 1.8;
}

.tackle-visual {
    min-height: 300px;
}

.tackle-diagram {
    position: relative;
    min-height: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f5f5f5;
    overflow: hidden;
}

.rod-line {
    position: absolute;
    width: 80%;
    height: 8px;
    left: 10%;
    top: 48%;
    border-radius: 10px;
    background: #777;
}

.reel-top,
.reel-bottom {
    position: absolute;
    left: 42%;
    padding: 14px 18px;
    border: 1px solid #aaa;
    border-radius: 6px;
    background: white;
    font-weight: 700;
}

.reel-top {
    top: 34%;
}

.reel-bottom {
    top: 53%;
}

.rod-label {
    position: absolute;
    right: 10%;
    bottom: 25%;
    font-weight: 700;
}

.tackle-comparison {
    margin-bottom: 75px;
}

.tackle-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 30px;
}

.tackle-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: #f7f7f7;
}

.tackle-card h3 {
    margin-bottom: 18px;
}

.tackle-card li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.tackle-note-visual {
    min-height: 300px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f7f7f7;
}

.tackle-note-visual strong {
    font-size: 1.3rem;
}

.tackle-note-visual span {
    line-height: 1.7;
}

@media (max-width: 800px) {

    .tackle-feature {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tackle-feature.reverse .tackle-feature-text,
    .tackle-feature.reverse .tackle-visual {
        order: initial;
    }

    .tackle-comparison-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 550px) {

    .tackle-content {
        padding: 45px 0 60px;
    }

}