.blog-layout {
  padding: 40px 0;
}


/* LEFT CONTENT */
.blog-content {
  flex: 1;
  min-width: 0;
}

/* SEARCH WIDGET */
.widget form {
  display: flex;
  align-items: center;
  position: relative;
}

/* INPUT FIELD */
.widget input[type="search"],
.widget input[type="text"] {
  width: 100%;
  padding: 12px 5px 12px 5px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

/* INPUT FOCUS */
.widget input[type="search"]:focus,
.widget input[type="text"]:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

/* SEARCH BUTTON */
.widget button,
.widget input[type="submit"] {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  padding: 0 15px;
  border: none;
  background: #0073aa;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.widget button:hover,
.widget input[type="submit"]:hover {
  background: #005f8d;
}
.post-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.post-content {
  line-height: 1.7;
}

/* SIDEBAR */
.sidebar {
  width: 320px;
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 500px;
}

/* WIDGET */
.widget {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.widget h3 {
  margin-bottom: 10px;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 8px;
}

.widget a {
  text-decoration: none;
  color: #333;
}


/* WIDGET */
.my-widget {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* TITLE */
.my-enquiry-title {
  margin-bottom: 15px;
  font-size: 18px;
}

/* FORM */
.my-enquiry-form-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* INPUTS */
.my-input,
.my-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* TEXTAREA */
.my-textarea {
  min-height: 80px;
  resize: vertical;
}

/* FOCUS */
.my-input:focus,
.my-textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.1);
}

/* BUTTON */
.my-btn {
  background: #0073aa;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.my-btn:hover {
  background: #005f8d;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .sidebar-inner {
    position: static;
  }
}