.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.guide-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.guide-card__image {
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    position: relative;
    overflow: hidden;
}

.guide-card__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-card__content {
    padding: 1.5rem;
}

.guide-card__name {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: #333;
}

.guide-card__bio {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.guide-card__read-more {
    display: block;
    background: none;
    color: #DE4D44;
    border: 2px solid #DE4D44;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    transition: all 200ms ease;
    width: 100%;
    cursor: pointer;
}

.guide-card__read-more:hover {
    background: #DE4D44;
    color: #fff;
}

/* Modal styles */
.guide-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.guide-modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-modal__content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.guide-modal__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    color: #666;
}

.guide-modal__header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.guide-modal__image {
    width: 200px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.guide-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-modal__name {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.guide-modal__bio {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive layout */
@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-modal__header {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-modal__content {
        padding: 1.5rem;
    }
} 