/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.case-study-single {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-header {
    margin-bottom: 40px;
}

.case-study-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.case-study-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 14px;
    line-height: 1;
}

.case-study-thumb {
    margin-top: 24px;
}

.case-study-thumb img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.case-study-overview {
    margin: 40px 0;
    padding: 28px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 18px;
}

.case-study-overview h2 {
    margin-bottom: 20px;
}

.case-study-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.case-study-overview-item h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.case-study-overview-item p {
    margin: 0;
}

.case-study-content {
    margin-bottom: 40px;
}

.case-study-section {
    margin: 40px 0;
}

.case-study-section h2 {
    margin-bottom: 14px;
}

.case-study-text p:last-child {
    margin-bottom: 0;
}

.service-single {
    max-width: 900px;
    margin: 0 auto;
}

.service-header {
    margin-bottom: 40px;
}

.service-short-pitch {
    margin: 18px 0 24px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.service-short-pitch p:last-child {
    margin-bottom: 0;
}

.service-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.service-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 14px;
    line-height: 1;
}

.service-thumb {
    margin-top: 24px;
}

.service-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.service-content {
    margin-bottom: 40px;
}

.service-section {
    margin: 40px 0;
}

.service-section h2 {
    margin-bottom: 16px;
}

.service-deliverables-list {
    margin: 0;
    padding-left: 20px;
}

.service-deliverables-list li {
    margin-bottom: 10px;
}

.service-meta-box {
    padding: 24px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 18px;
}

.service-meta-box p:last-child {
    margin-bottom: 0;
}

.service-cta {
    margin: 48px 0 20px;
}

.service-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.service-cta-button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .case-study-overview-grid {
        grid-template-columns: 1fr;
    }

    .case-study-overview {
        padding: 20px;
    }
}