/* Importa una tipografía elegante desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

.notas-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Merriweather', serif;
}

.notas-column {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.notas-column h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.notas-column h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c7ea46;
    margin: 10px auto 0;
    border-radius: 2px;
}

.nota-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.nota-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nota-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nota-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nota-thumb:hover img {
    transform: scale(1.05);
}

.nota-content h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nota-content h3 a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

/* Nuevo hover animado en el título del enlace */
.nota-content h3 a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #c7ea46;
    transition: width 0.3s ease;
}

.nota-content h3 a:hover {
    color: #c7ea46;
    font-weight: 700;
}

.nota-content h3 a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .notas-container {
        flex-direction: column;
        gap: 30px;
    }
}
