/* General Styles for the Ski Resort Plugin */
.ski-resort-lifts, .ski-resort-trails {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.2em;
	font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
}

.lift, .trail {
    flex-basis: 22%; /* Adjusted for 4 columns */
    box-sizing: border-box;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.lift img, .trail img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.lift-details h3, .trail-details h3 {
    font-size: 1.4em;
    margin: 0 0 10px 0;
}

.lift-name
{
  font-size: 1.3em;
  font-weight: 900;
}

.lift-status
{
  font-size: 2.4em;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 17px;
}

.lift-type
{
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
}

.trail-name
{
  font-size: 1.3em;
  font-weight: 900;
}

.trail-status
{
  font-size: 2.4em;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 17px;
}

.trail-area
{
  margin-bottom: 0px;
  margin-top: 0px;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
    .lift, .trail {
        flex-basis: 30%; /* 3 columns on smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .lift, .trail {
        flex-basis: 45%; /* 2 columns on tablet screens */
    }
}

@media screen and (max-width: 480px) {
    .lift, .trail {
        flex-basis: 100%; /* 1 column on mobile screens */
    }
}