.filter-buttons {
justify-content: center;
gap: 10px;
border: 1px solid #262626;
border-radius: 30px;
display: flex;
width: fit-content;
padding: 5px 5px;
margin: 0px auto;
margin-bottom:30px !important;
}
.filter-buttons button {
padding: 10px 20px;
border-radius: 30px;
color: white;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
background: transparent;
border-style: solid;
border-width: 1px;
border-color: #262626;
color: #808080;
}
.filter-buttons button.active {
background: #0F0F0F;
border-style: solid;
border-width: 1px;
border-color: #262626;
color: #fff;
}
.filter-buttons button:hover {
background: #0F0F0F;
color: #FFF;
}
.feed-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.feed-item {
background-color: transparent;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.feed-item img {
width: 100%;
height: 365px;
object-fit: cover;
}
.feed-content {
padding: 15px;
}
.feed-title {
margin-bottom: 10px;
color: #FFFFFF;
font-family: "Sora", Sans-serif;
font-size: 24px;
font-weight: 600;
line-height: 30px;
margin-top: 0px;
}
.feed-title a {
text-decoration: none;
color: #ffffff;
}
.description {
color: #8C8C8C;
font-family: "Poppins", Sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 19.2px;
}
.meta-info {
display: flex;
justify-content: flex-end;
align-items: center;
font-size: 12px;
color: #888888;
gap: 20px;
margin-bottom: 10px;
}
.meta-info span {
padding: 10px 15px;
border-style: solid;
border-width: 1px;
border-radius: 50px;
}
.read-more {
text-align: left;
margin-top: 10px;
display: flex;
}
.read-more a {
font-size: 15px;
padding: 15px 30px;
text-decoration: none;
transition: 0.3s;
color: #E9E9E9;
background-color: #141414;
border-radius: 32px;
}
.hidden {
display: none;
}