.gdt-volunteer-archive,
.gdt-volunteer-single {
    padding: 48px 0;
    background: #f7f8fa;
}

.gdt-volunteer-page-header {
    margin-bottom: 32px;
}

.gdt-volunteer-programs-title {
    margin: 0 0 18px;
    color: #111;
    font-size: 30px;
    font-weight: 700;
}

.gdt-volunteer-program-grid {
    display: grid;
    grid-template-columns: repeat(var(--gdt-volunteer-columns, 3), minmax(0, 1fr));
    gap: 24px;
}

.gdt-volunteer-program-card {
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    background: #fff;
}

.gdt-volunteer-program-card__image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: #e5e7eb;
}

.gdt-volunteer-program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.gdt-volunteer-program-card:hover .gdt-volunteer-program-card__image img {
    transform: scale(1.03);
}

.gdt-volunteer-program-card__placeholder {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.gdt-volunteer-program-card__heart {
    position: absolute;
    top: 17px;
    right: 17px;
    color: #fff;
    font-size: 27px;
    line-height: 1;
}

.gdt-volunteer-program-card__body {
    padding: 20px 14px 15px;
}

.gdt-volunteer-program-card__body h3 {
    min-height: 48px;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.gdt-volunteer-program-card__body h3 a {
    color: #111;
}

.gdt-volunteer-program-card__review {
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 13px;
}

.gdt-volunteer-program-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.gdt-volunteer-program-card__duration {
    color: #111;
}

.gdt-volunteer-program-card__price {
    color: #374151;
    text-align: right;
}

.gdt-volunteer-program-card__price > span:first-child {
    color: #ff9d3d;
}

.gdt-volunteer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 32px;
    align-items: center;
    margin-bottom: 36px;
}

.gdt-volunteer-hero > img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 14px;
}

.gdt-volunteer-section,
.gdt-volunteer-apply-card {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.gdt-volunteer-apply-card {
    position: sticky;
    top: 100px;
}

.gdt-volunteer-price {
    margin: 12px 0;
    font-size: 34px;
    font-weight: 700;
}

.gdt-volunteer-apply-card select {
    margin: 8px 0 16px;
}

.gdt-volunteer-screening-public-question {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.gdt-volunteer-screening-public-question legend {
    margin-bottom: 10px;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
}

.gdt-volunteer-screening-public-question label {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-weight: 400;
}

.gdt-volunteer-screening-passed {
    margin-bottom: 14px;
    padding: 9px 12px;
    border-radius: 7px;
    background: #ecfdf3;
    color: #027a48;
    font-weight: 600;
}

.gdt-volunteer-details > div {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.gdt-volunteer-details dt {
    font-weight: 600;
}

.gdt-volunteer-public-skill-group + .gdt-volunteer-public-skill-group {
    margin-top: 22px;
}

.gdt-volunteer-public-skill-group h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.gdt-volunteer-public-skill-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gdt-volunteer-public-skill-group li {
    display: grid;
    gap: 2px;
    padding: 10px 14px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #f8fafc;
}

.gdt-volunteer-public-skill-group li span {
    color: #667085;
    font-size: 12px;
}

@media (max-width: 991px) {
    .gdt-volunteer-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gdt-volunteer-hero,
    .gdt-volunteer-program-grid {
        grid-template-columns: 1fr;
    }

    .gdt-volunteer-apply-card {
        position: static;
    }
}

.gdt-volunteer-single__profile-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gdt-volunteer-single__profile-modal.is-open {
    display: flex;
}

.gdt-volunteer-single__profile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .62);
}

.gdt-volunteer-single__profile-dialog {
    position: relative;
    width: min(100%, 430px);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .22);
    color: #101828;
}

.gdt-volunteer-single__profile-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 26px;
    line-height: 1;
}

.gdt-volunteer-single__profile-eyebrow {
    margin: 0 0 8px;
    color: #ff5a1f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.gdt-volunteer-single__profile-dialog h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.25;
}

.gdt-volunteer-single__profile-dialog p:not(.gdt-volunteer-single__profile-eyebrow) {
    margin: 0 0 22px;
    color: #475467;
}

.gdt-volunteer-single__profile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 8px;
    background: #101828;
    padding: 10px 18px;
    color: #fff;
    font-weight: 700;
}

.gdt-volunteer-single__profile-action:hover,
.gdt-volunteer-single__profile-action:focus {
    color: #fff;
}

body.gdt-volunteer-profile-modal-open {
    overflow: hidden;
}