.no-gap {
  gap: 0 !important;
}

.usp-row {
  flex-wrap: nowrap;
}

.page-title,
.entry-title {
  display: none;
}

.logo-section .logo-link img {
  display: block;
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo-section .logo-link:hover img {
  transform: scale(1.05);
}

/* ===== FORCE FULL WIDTH IN ELEMENTOR ===== */
.elementor-section .elementor-container{
  max-width:100% !important;
  width:100% !important;
}

.elementor-widget-shortcode,
.elementor-widget-container{
  width:100% !important;
}

/* ===== LAYOUT ===== */
.press-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
}

/* สลับซ้ายขวา */
.press-reverse .press-image{ order:2; }
.press-reverse .press-content{ order:1; }
.press-reverse .press-btn{
  align-self:flex-start; /* 🔥 บังคับไปซ้ายจริง */
}
.press-reverse .press-content{
  align-items:flex-end;
  text-align:right;
}

/* ===== IMAGE ADAPTIVE HEIGHT ===== */
.press-image{
  width:100%;
  min-height:420px;
  max-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f5f5f5;
}

.press-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.press-image img[src*="portrait"],
.press-image img[src*="vertical"]{
  object-fit:contain;
}

/* ===== CONTENT ===== */
.press-content{
  padding:clamp(40px,6vw,100px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  height:100%;
	align-items:flex-start;
  text-align:left;
}

/* ===== TEXT ===== */
.press-title{
  font-size:clamp(26px,2.2vw,38px);
  margin-bottom:20px;
}

.press-desc{
  font-size:16px;
  line-height:1.9;
  width:100%
}

/* ===== BUTTON DEFAULT (รูปอยู่ซ้าย → ปุ่มชิดขวา) ===== */
.press-btn{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  text-decoration:none;
  color:inherit;
  letter-spacing:.6px;
  font-size:15px;

  align-self:flex-end;   /* 🔥 บังคับไปขวาจริง */
}

/* กัน theme override */
.press-btn:visited,
.press-btn:active,
.press-btn:hover{
  color:inherit;
}

.press-btn .arrow{
  font-size:1em;
  transition:transform .25s ease;
  color:inherit;
}

.press-btn:hover .arrow{
  transform:translateX(6px);
}

/* ===== Wrapper ===== */
.award-detail {
    max-width: 1100px;
    margin: auto;
}

/* ===== Header ===== */
.award-header {
    display: flex;
    align-items: center;   /* ให้ title กับปุ่มอยู่กลางแนวเดียวกัน */
		padding: 30px 10px 30px 10px
}

.award-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

/* ===== Back Arrow ===== */
.award-back {
	  gap: 20px;   
    display: flex;
    align-items: center;
    justify-content: center;
		margin-bottom:-100px
    width: 56px;
    height: 56px;

    font-size: 56px;       /* อย่าใหญ่เกินกล่อง */
    line-height: 0;        /* 🔴 ตัวสำคัญ: ฆ่า baseline */
    transform: translateY(-1px); /* fine-tune optical center */

    text-decoration: none;
}

/* ===== Image ===== */
.award-image {
    display: flex;
    justify-content: center;
}

.award-image img {
    width:100%;
  	height:100%;
  	object-fit:cover;
}

/* ===== Content Box ===== */
.award-content {
    padding: 150px 100px; 
    max-width: 1100px;   
    margin: 0 auto;        
}

/* ===== Text ===== */
.award-text {
    font-size: 20px;
    line-height: 1.8;
    width:100%;
}

/* ===== Author ===== */
.award-author {
    text-align: right;
    margin-top: 40px;
    font-size: 20px;
		font-weight: 600;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
	.press-reverse .press-image{ order:1; }
	
  .press-card{
    grid-template-columns:1fr;
  }
	
  .press-btn{
    margin-left:0;
    margin-right:0;
  }
	
	.award-content{
		padding: 30px 50px;
	}
}

/* ===== BLOG CONTENT FIX ===== */
.blog-body {
  font-size: 18px;
  line-height: 1.8;
}

/* paragraph spacing */
.blog-body p {
  margin-bottom: 1.2em;
}

/* heading */
.blog-body h1,
.blog-body h2,
.blog-body h3 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.4;
}

/* list */
.blog-body ul,
.blog-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

/* quote */
.blog-body .wp-block-quote,
.blog-body blockquote {
  border-left: 4px solid rgba(0,0,0,0.2);
  padding-left: 16px;
  margin: 2em 0;
  font-style: italic;
  background: transparent !important; /* กัน theme override */
}

/* table */
.blog-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}

.blog-body .wp-block-table th,
.blog-body .wp-block-table td {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px;
  text-align: left;
}

/* image */
.blog-body img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}

/* strong */
.blog-body strong {
  font-weight: 600;
}