/*
Theme Name: InfoJuve24
Theme URI: https://www.infojuve24.it
Author: Il tuo nome
Author URI: https://www.infojuve24.it
Description: Tema WordPress ispirato al sito ufficiale della Juventus.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infojuve24
Tags: responsive, news, sports, juventus

*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}
header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}
nav {
    background-color: #111;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
}
.carousel-item {
    flex: 0 0 80%;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 10px;
}
.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.latest-news {
    padding: 20px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.news-item {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
}
