/* === Hendzel – Portfolio Image Metadata === */

.hendzel-grid-wrapper {
    display: flex;
    flex-direction: column;
}

/* Block under each image */
.hendzel-grid-wrapper .hendzel-image-meta {
    margin-top: 14px;
    text-align: left;
}

/* /01 index label */
.hendzel-grid-wrapper .hendzel-image-index {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: #777;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Title (Media Library title) */
.hendzel-grid-wrapper .hendzel-image-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #111;
}

/* Caption (Media Library caption) */
.hendzel-grid-wrapper .hendzel-image-caption {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #111;
    line-height: 1.4;
}

/* Description (Media Library description) */
.hendzel-grid-wrapper .hendzel-image-description {
    font-size: 14px;
    font-weight: 300;
    color: #555;
    line-height: 1.45;
    margin-bottom: 6px;
}

/* "Read more" button */
.hendzel-grid-wrapper .hendzel-image-more {
    margin-top: 4px;
    padding: 0;
    border: none;
    background: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
}

/* Modal Overlay */
.hendzel-desc-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.hendzel-desc-modal.is-open {
    display: flex;
}

/* Modal Inner */
.hendzel-desc-inner {
    background: #fff;
    max-width: 540px;
    width: 90%;
    padding: 32px 36px;
    position: relative;
}

/* Modal Close */
.hendzel-desc-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Modal Title */
.hendzel-desc-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Modal Body */
.hendzel-desc-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
}