.work-detail {
    padding-top: var(--header-height);
}

.work-detail-hero {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.work-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.work-detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

.work-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.work-category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
}

.work-overview,
.work-results,
.work-details,
.work-images {
    margin-bottom: 5rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}



.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
}

.details-list {
    list-style: none;
}

.details-list li {
    margin-bottom: 3rem;
}

.details-list h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.work-navigation {
    text-align: center;
    margin-top: 4rem;
}

.back-to-works {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
    position: fixed;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    z-index: 100;
    margin-bottom: 0;
}

.back-to-works:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .work-detail-hero {
        height: 40vh;
    }

    .work-detail-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }
}

.note-embed-section {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}

.note-embed-section h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.note-embed {
    border-radius: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    background: #fff;
}

.note-link-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 2rem;
    margin-left: -15px;
    padding: 1rem 7rem 1rem 1.5rem;
    min-width: 400px;
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 18px rgba(37,99,235,0.13), 0 1.5px 6px rgba(37,99,235,0.08);
    border: 1.5px solid #e0e7ef;
    text-decoration: none;
    text-align: left;
    transition: box-shadow 0.3s cubic-bezier(.4,2,.6,1), transform 0.2s cubic-bezier(.4,2,.6,1), color 0.2s;
}

.note-link-btn:hover {
    color: #fff;
    background: var(--primary-color);
    box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 3px 12px rgba(37,99,235,0.10);
    transform: translateY(-4px) scale(1.04);
    border-color: #b6d0fa;
    text-align: left;
}

