/* cases.css | v14 system */

.v14-cases-section {
    padding: 40px 0;
    background: #ffffff;
}

.v14-cases-header {
    text-align: center;
    margin-bottom: 24px;
}

.v14-cases-header h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--v14-dark) !important;
    text-align: center !important;
    margin: 0 0 20px !important;
}

.v14-cases-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.v14-cases-arrow {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--v14-red);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--v14-transition);
    padding: 0;
}

.v14-cases-arrow:hover { opacity: 0.7; }

.v14-cases-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.v14-cases-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0ddd8;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: var(--v14-transition);
}

.v14-cases-dot.active {
    background: var(--v14-red);
    width: 12px;
    height: 12px;
}

.v14-cases-slider {
    position: relative;
    overflow: hidden;
}

.v14-cases-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v14-case-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f9fa;
}

.v14-case-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.v14-case-image-placeholder {
    width: 100%;
    height: 320px;
    background: #edeae4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v14-case-content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    border-left: 3px solid var(--v14-red);
}

.v14-case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.v14-case-tag {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: #e8e5e0;
    padding: 4px 12px;
    border-radius: 100px;
}

.v14-case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--v14-dark);
    line-height: 1.35;
}

.v14-case-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.v14-case-btn {
    display: inline-block;
    background: var(--v14-red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: var(--v14-transition);
    border: none;
    cursor: pointer;
}

.v14-case-btn:hover {
    background: var(--v14-dark);
    text-decoration: none;
}

@media (max-width: 768px) {
    .v14-case-slide { grid-template-columns: 1fr; }
    .v14-case-image { height: 200px; }
    .v14-case-content { padding: 24px; }
}
