.shots-purpose-section {
    padding: 140px 20px;
    background: #fff;
}

.shots-purpose-title {
    text-align: center;
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 90px;
    color: #1a1a1a;
    font-family: 'PT Mono', monospace;
}

.shots-purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.shot-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease;
    height: 100%;
}

.shot-card:hover {
    transform: translateY(-10px);
}

.shot-image {
    width: 320px;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f8f8;
}

.shot-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shot-card:hover .shot-image img {
    transform: scale(1.04);
}

.shot-name {
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 8px;
    color: #1a1a1a;
    font-family: 'PT Mono', monospace;
}

.shot-benefit {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: 'PT Mono', monospace;
}

.shot-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 24px;
    font-family: 'PT Mono', monospace;
}

.shot-link {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    margin-top: auto;
    font-family: 'PT Mono', monospace;
}

.shot-link:hover {
    text-decoration: underline;
}

/* Планшет и средние экраны */
@media (max-width: 1399px) {
    .shots-purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
    .shot-card {
        width: 420px;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        transition: transform 0.4s ease;
        height: 100%;
    }
    
    .shot-card:hover {
        transform: translateY(-10px);
    }
    
    .shot-image {
        width: 420px;
        height: 420px;
        overflow: hidden;
        margin-bottom: 32px;
        background: #f8f8f8;
    }
    .shot-image img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
}

/* Мобилка */
@media (max-width: 900px) {
    .shots-purpose-section {
        padding: 70px 12px;
    }
    .shots-purpose-title { 
        font-size: 32px; 
        margin-bottom: 40px; 
    }
    .shots-purpose-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
        padding: 0 4px;
    }
    .shot-card {
        width: 100%;
        margin-right: 0;
    }
    .shot-image { 
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 16px;
    }
    .shot-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .shot-name {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .shot-benefit {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .shot-desc {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .shot-link {
        font-size: 12px;
    }
}