main {
    background: linear-gradient(#379CD0, #00293F);
    background-repeat: no-repeat;
    background-size: cover;
}

actuhead {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
actuhead {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
  text-align: center;
  padding: 30px 0 20px;
  color: white;
}

actuhead h2 {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

actuhead p {
  opacity: 0.85;
  font-size: 1rem;
}

.filter-form {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-wrapper {
    background: #e0f4ff;
    padding: 20px 25px;
    border-radius: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.search-bar {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.filters-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
}

.filters-row select {
    flex: 1 1 30%;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: inherit;
    border: 1px solid #ccc;
    font-size: 0.88rem;
    min-width: 120px;
}

.filters-row select {
    cursor: pointer;
}

.filter-btn {
    padding: 12px 25px;
    background: #379CD0;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-btn:hover {
    background: #2d7bb5;
}

.actus-list .container {
    margin: 0 auto;
    padding: 0 20px;
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination-info {
    color: white;
    font-size: 0.95rem;
}

.pagination-btn {
    display: inline-block;
    padding: 9px 18px;
    background: #e0f4ff;
    color: #379CD0;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.15s ease;
}

.pagination-btn:hover {
    background: #379CD0;
    color: white;
    transform: translateY(-2px);
}

.actus-list .container .result-span {
    display: inline;
    color: white;
}

.actus-list .container .no-actu {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 450;
}

.actus-container {
    list-style: none;
    padding: 0px;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.actu_item {
    height: 260px;
    width: 300px;
}

.actu_item a {
    display: flex;
    flex-direction: column;
    background: #D7EFFB;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform .2s ease, box-shadow .2s ease;
}

.actu_item a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.20);
}

.actu_item img {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    object-fit: contain;
    display: block;
}

.label {
    display: inline-block;
    flex-direction: row;
    background: #379CD0;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    margin: 10px auto 0 10px;
}

.actu_item p {
    padding: 10px 15px 15px 15px;
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    color: black;
}
