/*
 * Styles for the My Sermon Manager plugin.
 */

.msm-sermons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.msm-sermon-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.msm-sermon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.msm-sermon-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.msm-sermon-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.msm-sermon-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.msm-sermon-meta span {
    display: block;
    margin-bottom: 0.3rem;
}

.msm-sermon-meta a {
    color: #3498db;
    text-decoration: none;
}

.msm-sermon-meta a:hover {
    text-decoration: underline;
}

.msm-sermon-content {
    color: #34495e;
    line-height: 1.6;
}
