.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms ease;
  background-color: #17a2b8;
  color: #ffffff;
  border-color: #17a2b8; }
  .btn:focus {
    outline: 2px solid #17a2b8;
    outline-offset: 2px; }
  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed; }
  .btn:hover {
    background-color: #17a2b8;
    border-color: #17a2b8; }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 150ms ease;
    background-color: #8b7355;
    color: #ffffff;
    border-color: #8b7355; }
    .btn-secondary:focus {
      outline: 2px solid #17a2b8;
      outline-offset: 2px; }
    .btn-secondary:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
    .btn-secondary:hover {
      background-color: #6b5345;
      border-color: #6b5345; }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 150ms ease;
    background-color: transparent;
    color: #17a2b8;
    border-color: #17a2b8; }
    .btn-outline:focus {
      outline: 2px solid #17a2b8;
      outline-offset: 2px; }
    .btn-outline:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
    .btn-outline:hover {
      background-color: #17a2b8;
      color: #ffffff; }
  .btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem; }
  .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem; }
  .btn-block {
    display: flex;
    width: 100%; }

.card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease; }

.card-image {
  position: relative;
  overflow: hidden; }
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease; }
  .card:hover .card-image img {
    transform: scale(1.05); }

.card-content {
  padding: 1.5rem; }

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem; }
  .card-title a {
    color: inherit; }
    .card-title a:hover {
      color: #17a2b8; }

.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #8b9cad;
  margin-bottom: 0.5rem; }

.card-excerpt {
  color: #5a6c7d;
  margin-bottom: 1rem; }

.form-group {
  margin-bottom: 1.5rem;
  margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.875rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50; }

.form-control {
  width: 100%; }
  .form-control::placeholder {
    color: #8b9cad; }
  .form-control:focus-visible {
    outline: 2px solid #17a2b8;
    outline-offset: 2px; }

textarea.form-control {
  min-height: 120px;
  resize: vertical; }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem; }

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem; }
  .form-checkbox input,
  .form-radio input {
    width: 18px;
    height: 18px;
    accent-color: #17a2b8; }

.search-form {
  display: flex;
  gap: 0.5rem; }
  .search-form .search-field {
    width: 100%;
    flex: 1; }
    .search-form .search-field::placeholder {
      color: #8b9cad; }
  .search-form .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 150ms ease;
    background-color: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8; }
    .search-form .search-submit:focus {
      outline: 2px solid #17a2b8;
      outline-offset: 2px; }
    .search-form .search-submit:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
    .search-form .search-submit:hover {
      background-color: #17a2b8;
      border-color: #17a2b8; }

.widget {
  margin-bottom: 3rem;
  background: #faf7f6;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px; }
  .widget:last-child {
    margin-bottom: 0; }

.widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #17a2b8; }

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef; }
    .widget ul li:last-child {
      border-bottom: none; }

.tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #17a2b8;
  background-color: rgba(23, 162, 184, 0.1);
  border-radius: 0.25rem;
  transition: all 150ms ease; }
  .tag:hover {
    background-color: #17a2b8;
    color: #ffffff; }

.blog-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #17a2b8;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
  [dir="rtl"] .blog-badge {
    right: auto;
    left: 1rem; }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem; }
  .pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #17a2b8;
    border: 1px solid #17a2b8;
    border-radius: 0.5rem;
    transition: all 150ms ease; }
    .pagination .page-numbers:hover, .pagination .page-numbers.current {
      background-color: #ffffff;
      color: #17a2b8;
      border: 1px solid #17a2b8; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ffffff;
  justify-content: center; }
  @media (max-width: 767px) {
    .breadcrumbs {
      justify-content: start; } }
  .breadcrumbs a {
    color: #ffffff; }
    .breadcrumbs a:hover {
      color: #17a2b8; }
  .breadcrumbs .separator {
    color: #ced4da; }

.cta-button {
  background-color: #17a2b8;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
  padding: 12px 2rem;
  text-align: center;
  transition: all 300ms ease;
  font-family: Karla, sans-serif;
  padding-block: 17px; }
  .cta-button:hover {
    color: #ffffff; }

.social-links {
  display: flex;
  gap: 1rem; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #5a6c7d;
  background-color: #f8f9fa;
  border-radius: 9999px;
  transition: all 150ms ease; }
  .social-link:hover {
    background-color: #17a2b8;
    color: #ffffff; }
  .social-link svg {
    width: 20px;
    height: 20px; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #17a2b8;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms ease;
  z-index: 1030; }
  .back-to-top i {
    font-size: 20px;
    color: #ffffff;
    transition: transform 300ms ease; }
  .back-to-top:hover {
    transform: translateY(-3px); }
    .back-to-top:hover i {
      transform: translateY(-2px); }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

/*# sourceMappingURL=components.css.map */
