/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 19 2026 | 05:24:17 */
/* ---- Albums Grid ---- */
.ctt-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.ctt-album-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ctt-album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.ctt-album-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.ctt-album-cover {
    position: relative;
    height: 185px;
    background: #f3f3f3;
    overflow: hidden;
}
.ctt-album-cover img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.3s ease;
}
.ctt-album-card:hover .ctt-album-cover img {
    transform: scale(1.05);
}
.ctt-cover-empty {
    display: flex; align-items: center; justify-content: center;
    height: 100%; color: #bbb; font-size: 14px;
}
.ctt-photo-count {
    position: absolute; bottom: 8px; right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff; font-size: 12px;
    padding: 3px 10px; border-radius: 20px;
}
.ctt-album-info { padding: 14px 16px 16px; }
.ctt-album-title {
    font-size: 15px; font-weight: 600; margin: 0 0 5px;
    color: #1a1a1a; line-height: 1.3;
}
.ctt-album-date { font-size: 12px; color: #888; margin: 0; }

/* ---- Single Album ---- */
.ctt-single-album { margin: 1rem 0; }
.ctt-album-header { margin-bottom: 1.5rem; }
.ctt-back-link {
    display: inline-block; font-size: 13px;
    color: #666; text-decoration: none; margin-bottom: 10px;
}
.ctt-back-link:hover { color: #222; }
.ctt-album-heading { font-size: 24px; margin: 0 0 5px; color: #111; }
.ctt-album-meta { font-size: 13px; color: #888; margin: 0; }

/* ---- Photo Grid ---- */
.ctt-photos-grid {
    display: grid;
    gap: 8px;
}
.ctt-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ctt-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ctt-cols-4 { grid-template-columns: repeat(4, 1fr); }

.ctt-photo-link {
    display: block; overflow: hidden;
    border-radius: 6px; aspect-ratio: 4 / 3;
}
.ctt-photo-link img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.3s ease;
}
.ctt-photo-link:hover img { transform: scale(1.05); }

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .ctt-albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    .ctt-cols-3,
    .ctt-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .ctt-album-heading { font-size: 20px; }
}