.portfolio-filter-container {
  margin-bottom: 30px;
}

.portfolio-filter-btn {
    border-radius: 67px;
    background: #D9D9D9;
    color: #000000;
    text-align: center;
    font-family: "Satoshi Variable";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding:20px 40px;
    margin-right:20px;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
    background: #FFB307;
    color: #FFF;
    margin-right:20px;
}

@media (max-width: 768px) {
    .portfolio-filter-btn {
        font-size: 16px;
        padding: 12px 20px;
        margin: 8px 8px 8px 0;
        display: inline-block;
        white-space: nowrap; /* prevents text from breaking awkwardly */
    }

    /* If buttons are wrapping badly, you can make them full width */
    /* .portfolio-filter-btn {
        width: 100%;
        text-align: center;
        margin: 8px 0;
    } */
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: 8px;
  transition: transform 0.3s ease;
}


.portfolio-image {
  margin-bottom: 15px;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 10px 10px 2px #E8E8E8;
}

.portfolio-category span {
    background: #FFB307;
    display: inline-block !important; 
    width: auto !important; 
    max-width: fit-content; 
    padding:10px 20px;
	border-radius:67px;
	color: #FFF;
	text-align: center;
	font-family: "Satoshi Variable";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.portfolio-title {
    color: #000;
    font-family: "Satoshi Variable";
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.portfolio-excerpt {
    color: #4E4E4E;
    font-family: "Satoshi Variable";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.portfolio-button{
    margin-top:20px;
}

.portfolio-button .button {
  background: #FFB307;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  box-shadow: 5px 5px 2px #FFE3A4 !important;
}


.portfolio-no-results {
  text-align: center;
  padding: 40px;
  grid-column: 1 / -1;
}