/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 17-Mar-2026, 7:56:50 pm
    Author     : Raimech_Aero
*/

@media (min-width: 992px)
{
    
.container{
    display:block;
}

.seasons_flex{
 display: flex;   
}
   
.season {
	display: block;
        height: auto;
	max-height: 600px;
	box-shadow: 1px 2px 8px -1px gray;
	margin: 2%;
	padding: 1%;
        border-radius: 12px;
}
.season p{
    text-align: justify;
     font-family: inter,system,sans-serif;
     font-size: 1.2rem;
     color:#7b7373;
}
.seasons_data{
    width:80%;
    margin-left: 10%;
}
 
.season img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.highlights{
    display:block;
}
.highlights h3{
    display: block;
}
.highlights ul{
    display: grid;
    list-style:none;
    width:80%;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap:10px;
}
.highlights li{
    display: block;
    background-color: orange;
    border-radius: 50px;
    color:white;
    margin: 2%;
    padding-left:5%;
    padding-right:5%;
    padding-top:2%;
    padding-bottom:2%;
    width:auto;
    text-align: center;
    box-shadow: 1px 2px 8px -1px gray;
    

}
}

@media (max-width: 991px)
{
   .seasons_flex{
 display: block; 
 width:90vw;
 margin-left: auto;
 margin-right: auto;
 margin-top: 5%;
 
} 
    .season {
	display: block;
        height: auto;
	max-height: 600px;
	box-shadow: 1px 2px 8px -1px gray;
	
	padding: 1%;
        border-radius: 12px;
        margin-bottom: 25px;
}
.season p {
	text-align: justify;
	font-family: inter,system,sans-serif;
	font-size: 0.875rem;
	color: #7b7373;
	padding: 5%;
}
.seasons_data{
    width:80%;
    margin-left: 10%;
}
 
.season img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 12px;
}
.highlights{
    display:block;
}
.highlights h3{
    display: block;
    text-align: center;
}
.highlights ul {
	display: grid;
	list-style: none;
	width: 80%;
	grid-template-columns: repeat(2, minmax(100px, 1fr));
	gap: 10px;
	font-size: 0.75rem;
	
}
.highlights li{
    display: block;
    background-color: orange;
    border-radius: 50px;
    color:white;
    margin: 2%;
    padding-left:5%;
    padding-right:5%;
    padding-top:2%;
    padding-bottom:2%;
    width:auto;
    text-align: center;
    box-shadow: 1px 2px 8px -1px gray;
    

}
    
}