/* Improved workshop page styles - visually cleaner and responsive */

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(180deg, #071827 0%, #023335 100%);
    color: #e6f3ff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 40px 20px;
}

.workshop {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.06);
}

.workshop h2 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.3px;
}

.image-box {
    flex: 0 0 240px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.image-box img {
    width: calc(50% - 5px);
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.04);
}

.details {
    flex: 1 1 auto;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #dbefff;
}

.details p { margin: 6px 0; }
.details strong { color: #f6d365; }

/* Make the whole card readable on small screens */
@media (max-width: 800px) {
    .workshop {
        flex-direction: column;
        padding: 16px;
    }
    .image-box { flex: 0 0 auto; gap: 8px; }
    .image-box img { width: 48%; height: 120px; }
}

/* Small polish for nav inside this page */
header nav { width: 100%; padding: 12px 20px; }
header .logo { color: #f6d365; font-weight: 700; }

/* Reduce overly large bottom spacing from previous CSS */
img { display: block; }

