/* contact page */
.ws-box {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.ws-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.c-card {
    display: flex;
    padding: 15px 20px;
    align-items: center;
}
.c-card .ic{
    background: #2B398F;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
    font-size: 20px;
}

.c-card .label {
    color: #666;
    line-height: 26px;
    display: block;
}

.c-card .blurb {
  color: #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
}

.blog-card {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  margin-bottom: 15px;
}

.blog-card .thumbnail {
  position: relative;
  flex: 1 1 14%;
  background-color: #0073e6;
}

.blog-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .thumbnail .open-hours {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #0073e6;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.blog-card .thumbnail .open-hours span {
  display: block;
  font-size: 14px;
}

.blog-card .content {
  flex: 1 1 65%;
  padding: 20px;
}

.blog-card .content h2 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #333;
}

.blog-card .content .closed-day{
  background: rgba(55, 75, 190, .1);
  color: var(--secondary);
  font-size: 12px;
  padding: 0 8px;
  display: inline-block;
  border-radius: 30px;
}

.blog-card .content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px;
}

.blog-card .content .phone-numbers {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  margin: 20px 0px;
}

.blog-card .content .phone-numbers .phone {
  display: inline-block;
  padding-right: 30px;
  border-right: 1px solid #ddd;
  margin-right: 30px;
  font-weight: bold;
  font-size: 13px;
  line-height: 26px;
}

.blog-card .content .phone-numbers .phone span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #FF5F13;
  line-height: 16px;
}

.blog-card .content .read-more {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border: 1px #FF5F13 solid;
  color: #FF5F13;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.blog-card .content .read-more:hover {
  background-color: #FF5F13;
  color: #fff;
  border: none;
}


/* Responsive Design */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card .thumbnail,
  .blog-card .content {
    flex: 1 1 100%;
  }

  .blog-card .content {
    padding: 15px;
  }
  .blog-card .content .read-more{
    padding: 0;
    line-height: 20px;
    font-size: 14px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-card .content .closed-day {
    display: block;
    margin: 2px 0 0;
    padding: 0;
    background: #fff;
    }
  .blog-card .content .phone-numbers{
    justify-content: center;
    text-align: center;
    padding-top: 10px;
  }
  .c-card {
    margin-bottom: 15px;
    }
  .blog-card .content .phone-numbers .phone {
    flex: 1 1 auto;
    padding-right: 0px;
    margin-right: 0px;
    }
}

@media (max-width: 480px) {
  .blog-card .thumbnail .date {
    font-size: 12px;
    padding: 8px;
  }

  .blog-card .content h2 {
    font-size: 18px;
  }

  .blog-card .content p {
    font-size: 12px;
  }
}