/*
* This file has been refactored to use the global variables
* defined in style/main.css.
*
* NOTE: .enterance, .sidebar, and .pagination are
* duplicated components that we will fix later.
*/

/* ========================================= */
/* Main Elements */
/* ========================================= */

/* Layout (DUPLICATED COMPONENT) */
.blog-page-container {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    margin: 50px;
}



/* ------------------------------------------ */
/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-content: center;
}

.company-section {
  padding: 60px 10%;
  background-color: var(--color-gray-light-alt); /* Refactored */
  text-align: center;
}

.company-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--color-font-dark); /* Refactored */
  font-weight: 600;
}

/* ------------------------------------------ */
/* Responsive Design */
@media (max-width: 768px) {
  .contactButtons {
    flex-direction: column;
  }
}