.ds-sermon-grid-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.ds-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.ds-grid-title {
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.ds-header-controls {
    display: flex;
    gap: 10px;
}

.ds-header-controls select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.ds-header-controls select:focus {
    outline: none;
    border-color: var(--ds-primary, #0073aa);
}

.ds-grid-description {
    text-align: left;
    margin-bottom: 20px;
    color: #666;
}

.ds-sermon-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ds-sermon-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.ds-sermon-thumbnail {
    display: block;
    width: 320px;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px 0 0 0;
    overflow: hidden;
}

.ds-sermon-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.ds-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ds-play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
    margin-left: 5px;
}

.ds-sermon-content {
    padding: 10px 20px;
    flex: 1;
}

.ds-sermon-title {
    margin: 0 0 5px;
    font-size: 1.4em;
    color: #333;
}

.ds-sermon-pastor {
    margin: 0 0 8px;
    color: #666;
    font-size: 0.95em;
    font-weight: 500;
}

.ds-sermon-date {
    margin: 0;
    color: #888;
    font-size: 0.85em;
}

.ds-sermon-description {
    margin: 0 0 15px;
    color: #555;
    line-height: 1.5;
}

.ds-read-more {
    background: transparent !important;
    color: var(--ds-primary, #0073aa) !important;
    border: 1px solid var(--ds-primary, #0073aa) !important;
    padding: 5px 20px !important;
    margin: 10px 0px;
    border-radius: 12px !important;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.ds-read-more::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230073aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.ds-read-more:hover {
    background: var(--ds-primary, #0073aa);
    color: #fff;
}

.ds-read-more:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}

.ds-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
}

.ds-page-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: all 0.2s;
}

.ds-page-link:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.ds-page-current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.ds-no-sermons {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* Modal Styles */
.ds-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.ds-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.ds-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.ds-modal-close:hover {
    color: #000;
}

#ds-modal-title {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#ds-modal-transcript {
    line-height: 1.8;
    color: #333;
}

#ds-modal-transcript p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .ds-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ds-header-controls {
        width: 100%;
    }
    
    .ds-header-controls select {
        flex: 1;
    }
    
    .ds-sermon-card {
        flex-direction: column;
    }
    
    .ds-sermon-thumbnail {
        width: 100%;
    }
    
    .ds-sermon-grid-wrapper {
        padding: 10px;
    }
    
    .ds-sermon-content {
        padding: 15px;
    }
    
    .ds-sermon-title {
        font-size: 1.2em;
    }
    
    .ds-modal-content {
        margin: 10% auto;
        padding: 20px;
    }
}

.ds-latest-sermons {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.ds-latest-title {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 20px;
}
}

/* Latest Sermons Section */
.ds-latest-sermons {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}
