/* Block List Sections */
.umb-block-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-header--left {
    text-align: left;
}

.section-header--center {
    text-align: center;
}

.section-header--right {
    text-align: right;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Rich Text Section */
.rich-text-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Articles Section */
.articles-section {
    width: 100%;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Team Members Section */
.team-section {
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.team-card__photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__content {
    padding: 24px;
}

.team-card__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.team-card__role {
    font-size: 14px;
    color: #007a85;
    margin-bottom: 12px;
    font-weight: 500;
}

.team-card__bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-card__linkedin {
    display: inline-block;
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.team-card__linkedin:hover {
    opacity: 1;
}

.team-card__linkedin img {
    width: 100%;
    height: 100%;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 20px;
    border-radius: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card__quote {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
    font-style: italic;
}

.testimonial-card__rating {
    margin-bottom: 20px;
}

.testimonial-card__rating .star {
    color: #ffc107;
    font-size: 20px;
    margin-right: 4px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author-info {
    flex: 1;
}

.testimonial-card__author-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0 0 4px 0;
}

.testimonial-card__author-role {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #007a85 0%, #00adbf 100%);
}

.cta-section--left {
    text-align: left;
}

.cta-section--center {
    text-align: center;
}

.cta-section--right {
    text-align: right;
}

.cta-section--secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.cta-section--outline {
    background: white;
    border: 2px solid #007a85;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.cta-section--outline .cta-title {
    color: #007a85;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section--outline .cta-description {
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button--primary {
    background: white;
    color: #007a85;
}

.cta-button--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button--secondary {
    background: #007a85;
    color: white;
}

.cta-button--secondary:hover {
    background: #00adbf;
}

.cta-button--outline {
    background: transparent;
    color: #007a85;
    border: 2px solid #007a85;
}

.cta-button--outline:hover {
    background: #007a85;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .umb-block-list {
        gap: 40px;
        padding: 20px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .articles-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 16px;
    }
}
