/* Import PT Sans Narrow font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');

/* Guides Page Styling */

.guides-list-section {
    padding: 13px 0;
    background-color: #f9f9f9;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.guide-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guide-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guide-name {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    font-family: 'PT Sans Narrow', sans-serif !important;
}

.guide-title {
    font-size: 12px;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #222;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
}

.guide-bio {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.guide-bio p {
    margin: 0;
}

.guide-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.guide-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.guide-social-icon:hover {
    background: #ff0000;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-image {
        height: 320px;
    }
}
