* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.mentions-header {
    font-size: 32px;
    font-weight: 300;
    color: #b8b8b8;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.mentions-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b8b8b8;
}

.mentions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.mention-card-wrapper {
      background-color: #fff;
    border: 0 solid #69727d;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    transition: all .25s;
    width: 100%;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}
.mention-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    padding-bottom: 0px;
}

.mention-card-wrapper:hover {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
}

.mention-title {
    font-size: 18px;
    font-weight: 600;
    color: #001a33;
    margin-bottom: 20px;
    line-height: 1.4;
}
html body div h3.mention-title a{
    font-size: 18px;
    font-weight: 600;
    color: #001a33;
    line-height: 1.4;
}
html body div h3.mention-title a:hover{
    color: #001a33;
}
html body div p.mention-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

html body div a.mention-link {
    font-size: 12px;
    font-weight: 600;
    color: #001a33;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

html body div a.mention-link:hover,
html body div a.mention-link:focus
 {
  border: none;
    color: #001a33;
}

.mentions-grid p.mention-date {
    border-top: 1px solid #eaeaea;
    margin-bottom: 0;
    padding: 15px 30px;
        color: #adadad;
    font-size: 12px;
    line-height: 1.3em;
    margin-top: auto;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .mentions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .mentions-header {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .mention-card {
        padding: 25px;
    }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    body {
        padding: 30px 16px;
    }

    .mentions-section {
        max-width: 100%;
    }

    .mentions-header {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .mentions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mention-card {
        padding: 20px;
    }

    .mention-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .mention-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .mention-link {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .mention-date {
        font-size: 11px;
        padding-top: 15px;
    }
}
