/* <!-- <-----------------Pacifico-Fonts---------------> */
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Pacifico&family=Tac+One&display=swap");
/* <!-- <-----------------font-family: "Work Sans", sans-serif;-Fonts---------------> */
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Pacifico&family=Tac+One&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* <!-- <-----------------font-family: Kanit-Fonts---------------> */
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Pacifico&family=Tac+One&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f0f0f0;
}
:root {
  --orange-color: #ff570a;
  --secondary-color: #333;
  --background-color: #f0f0f0;
  --black-color: #000;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --hover-bg-color: rgba(0, 0, 0, 0.1);
  --dropdown-bg-color: #0b0b0b;
  --primary-color: #333;
  --white-color: #fff;
  --text-color: #333;
  --highlight-color: #007bff;
}
.API-FOOTBALL-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.API-FOOTBALL-main-card {
    flex: 1 1 60%;
    position: relative;
}

.API-FOOTBALL-main-card img {
    width: 100%;
    border-radius: 8px;
}

.API-FOOTBALL-main-card .API-FOOTBALL-details {
    margin-top: 20px;
}

.API-FOOTBALL-side-cards {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.API-FOOTBALL-side-card {
    display: flex;
    gap: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.API-FOOTBALL-side-card:hover {
    transform: translateY(-10px);
}

.API-FOOTBALL-side-card img {
    width: 120px;
    height: 80px;
    border-radius: 8px 0 0 8px;
    object-fit: cover;
}

.API-FOOTBALL-side-card .API-FOOTBALL-text-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.API-FOOTBALL-side-card .API-FOOTBALL-text-content h4 {
    margin: 0;
    font-size: 16px;
}

.API-FOOTBALL-side-card .API-FOOTBALL-text-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #888;
}

.API-FOOTBALL-tag {
    color: #e03e00;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.API-FOOTBALL-read-time {
    font-size: 12px;
    color: #888;
}



.sports-page-latest-articles {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sports-page-latest-articles h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.sports-page-articles-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sports-page-article-card {
    flex: 1 1 calc(25% - 20px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sports-page-article-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sports-page-article-info {
    padding: 15px;
}

.sports-page-author {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.sports-page-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.sports-page-article-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.sports-page-meta-info {
    font-size: 14px;
    color: #888;
}

.sports-page-show-more {
    display: inline-block;
    margin-top: 20px;
    color: #e03e00;
    text-decoration: none;
    font-weight: bold;
}

.sports-page-show-more:hover {
    text-decoration: underline;
}

.sports-page-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 992px) {
    .sports-page-article-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .sports-page-article-card {
        flex: 1 1 calc(100% - 20px);
    }
}