.solcard {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}
.card{
    width: 100%;
    height: 100%;
}
.solcardbg {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex; justify-content: center; align-items: center;
}
.solcardbg img, .solcardbg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardcover {
    width: 100%; height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: all ease 0.5s;
    display: flex; align-items: flex-start; justify-content: center; flex-direction: column;
}
.cardcover h3{
    font-size: 25px;
    font-weight: 700;
}

.cardcover  a{
    font-size: 16px; font-weight: 900;
    text-decoration: none;
    color: #333333;
    display: inline-block;
}
.pill-button {
    padding: 7px 20px;
    background-color: #FFFFFF;
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cardcover  a:hover{
    background-color: #F0F0F0;
    color: #333333;
}

.solcard:hover .cardcover{
    opacity: 1;
}
.solcardTimg{
    aspect-ratio: 4 / 2.5;
    overflow: hidden;
}
.solcardTcontent{
    aspect-ratio: 4 / 2.5;
    flex-direction: column;
}

.solcardTcontent h1{
    font-size: 25px;
    font-weight: 700;
}