@charset "UTF-8";

/* Web Font */
@font-face {
  font-family: "Charlie Display";
  src: url("../fonts/charlie-display.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Charlie Display";
  src: url("../fonts/charlie-display-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Charlie Display";
  src: url("../fonts/charlie-display-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#pt-30 {    padding-bottom: 30px;}

.breakout-box em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.breakout-box em::after {
  content: "\2192";
  font-size: 14px;
  line-height: 1;
}

.breakout-box:hover em,
.breakout-box.active em {
  background: #0052cc;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Charlie Display";
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.landing-wrap {
  width: 100%;
  overflow: hidden;
}

/* Top Header */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #707070;
}

.site-header-inner {
  max-width: 1200px;
  height: 62px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
}

.header-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  width: auto;
  object-fit: contain;
}

.atlassian-logo {
  height: 30px;
}

.aws-logo {
  height: 19px;
}

.logo-divider {
  width: 1px;
  height: 17px;
  background: rgba(0, 0, 0, 0.28);
}

.mid_logo {
  height: 30px;
}

/* Hero */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 360px;
  background: #fff;
  overflow: hidden;
}

/* Grid Background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 0;
}

/* Main Content */
.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
}

.hero-text {
  flex: 1 1 auto;
}

.hero-text h1 {
  font-family: "Charlie Display";
  font-size: 90px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  color: #050505;
  margin-bottom: 34px;
}

.event-info-box {
  width: 650px;
  max-width: 100%;
  padding: 18px 22px;
  background: #eaf0f7;
  border-radius: 4px;
  margin-bottom: 60px;
}

.event-info-box p {
  display: flex;
  letter-spacing: 0.3px;
  align-items: center;
  padding: 2px 0;
  gap: 20px;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 300;
  color: #222;
  word-break: keep-all;
}

.info-icon {
  display: inline-flex;
  width: 20px;
  flex: 0 0 18px;
  font-size: 10px;
  color: #1a1a1a;
}

/* Visual Object */
.hero-visual {
  position: absolute;
  right: 0;
}

.hero-object {
  width: 420px;
  max-width: 100%;
}

/* Intro Section */
.intro-section {
  width: 100%;
  background: #f1f4f8;
  padding: 70px 0 78px;
}

.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
  gap: 86px;
}

.intro-image-area {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-badge {
  width: 285px;
  max-width: 100%;
}

.intro-content {
  flex: 1 1 auto;
  padding-top: 4px;
}

.intro-text {
  font-family: "Charlie Display", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 300;
  font-style: italic;
  color: #111;
  margin-bottom: 30px;
}

.intro-text strong {
  font-weight: 700;
}

.photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 50px;
  padding: 0 32px 0 26px;
  border-radius: 999px;
  background: #f6a800;
  color: #111;
  font-family: "Charlie Display", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.photo-btn:hover {
  transform: translateY(-2px);
  background: #ffb000;
}

.photo-btn-icon {
  position: relative;
  width: 34px;
  height: 26px;
  display: inline-block;
  flex: 0 0 34px;
}

.icon-shape {
  position: absolute;
  display: block;
}

.icon-blue {
  left: 0;
  bottom: 3px;
  width: 23px;
  height: 18px;
  background: #2267b7;
  transform: skewY(-8deg);
}

.icon-purple {
  right: 0;
  top: 2px;
  width: 20px;
  height: 23px;
  background: #8b5bb3;
  transform: rotate(-3deg);
}

/* Agenda Section */
.agenda-section {
  width: 100%;
  background: #fff;
  padding: 78px 0 90px;
}

.agenda-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

.agenda-block {
  width: 100%;
  margin-bottom: 78px;
}

.agenda-block:last-child {
  margin-bottom: 0;
}

.agenda-title {
  position: relative;
  text-align: center;
  font-family: "Charlie Display";
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #727272;
  margin-bottom: 28px;
}

.agenda-title span {
  position: relative;
  display: inline-block;
  padding: 0 18px;
}

.agenda-title span img {
  width: 300px;
}

.agenda-table-wrap {
  width: 100%;
}

.agenda-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Charlie Display";
  color: #111;
}

.agenda-table thead th {
  height: 52px;
  background: #eaf0f7;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  padding: 0 46px;
}

.agenda-table thead th:first-child {
  width: 180px;
  text-align: center;
  border-radius: 8px 0 0 0;
}

.agenda-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.agenda-table tbody tr {
  border-bottom: 1px solid #c7cbd1;
}

.agenda-table tbody td {
  height: 60px;
  font-size: 22px;
  font-weight: 300;
  vertical-align: middle;
  padding: 0 46px;
}

.agenda-table tbody td:first-child {
  width: 220px;
  text-align: center;
  color: #222;
  padding: 0 20px;
}

.agenda-table tbody td:nth-child(2) {
  background: linear-gradient(
    to right,
    rgba(224, 238, 250, 0.88) 0%,
    rgba(224, 238, 250, 0.62) 42%,
    rgba(255, 255, 255, 0) 100%
  );
}

.agenda-green tbody td:nth-child(2) {
  background: linear-gradient(
    to right,
    rgba(237, 248, 220, 0.92) 0%,
    rgba(237, 248, 220, 0.65) 42%,
    rgba(255, 255, 255, 0) 100%
  );
}

.agenda-icon {
  width: 25px;
  display: inline-block;
  margin-right: 6px;
  font-size: 15px;
  vertical-align: -1px;
}

#w {
  background: #fff !important;
}

/* Day 2 Agenda Custom */
.agenda-day2 {
  table-layout: fixed;
}

.agenda-day2 thead th:first-child,
.agenda-day2 tbody td:first-child {
  width: 210px;
}

.agenda-day2 thead th:nth-child(2),
.agenda-day2 tbody td:nth-child(2) {
  width: auto;
}

.agenda-day2 thead th:nth-child(3),
.agenda-day2 tbody td:nth-child(3) {
  width: 270px;
}

.agenda-day2 tbody td:nth-child(2) {
  background: none;
}

.agenda-day2 tbody td {
  height: 72px;
  font-size: 22px;
}

.agenda-day2 tbody td:nth-child(3) {
  padding-left: 24px;
  padding-right: 24px;
}

/* Presenter Badge */
.presenter-badge {
  display: block;
  width: fit-content;
  min-width: 130px;
  height: 28px;
  line-height: 28px;
  margin: 4px 0;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

.presenter-badge.blue {
  background: #2f68ad;
}

.presenter-badge.orange {
  background: #e7831c;
}

/* Breakout Main */
.breakout-main-row td {
  background: #eaf0f7 !important;
  height: auto !important;
  padding: 0 !important;
}

.breakout-main-row td:first-child {
  padding: 0 20px !important;
  background: #fff !important;
}

.breakout-box-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
  background: #eaf0f7;
}

.breakout-box {
  position: relative;
  min-height: 120px;
  padding: 34px 38px 28px;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: #eaf0f7;
  text-align: left;
  font-family: "Charlie Display";
  color: #111;
  cursor: pointer;
  transition: all 0.2s ease;
}

.breakout-box:last-child {
  border-right: 0;
}

.breakout-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 14px;
  width: 100%;
}

.breakout-box.green::before {
  background: #75ae35;
}

.breakout-box.orange::before {
  background: #f6a800;
}

.breakout-box.purple::before {
  background: #9555aa;
}

.breakout-box strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.breakout-box span {
  display: block;
  margin-top: 3px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.breakout-box:hover,
.breakout-box.active {
  background: #dfe7f2;
}

/* Breakout Detail */
.agenda-table .breakout-detail-row > td {
  width: 100% !important;
  padding: 0 !important;
  background: #fff !important;
  height: auto !important;
}

.breakout-detail {
  display: none;
  width: 100%;
  padding: 42px 52px 46px;
  background: #fff;
  border-bottom: 1px solid #c7cbd1;
  box-sizing: border-box;
}

.breakout-detail.active {
  display: block;
}

.breakout-detail-title {
  margin-bottom: 26px;
  font-family: "Charlie Display";
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
  text-align: left;
}

.breakout-detail-grid {
  width: 100%;
  background: #fff;
}

.breakout-detail-head,
.breakout-detail-line {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 270px;
  align-items: center;
  width: 100%;
}

.breakout-detail-head {
  min-height: 46px;
  border-bottom: 1px solid #c7cbd1;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.breakout-detail-line {
  min-height: 72px;
  border-bottom: 1px solid #d7dce3;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 300;
  color: #111;
}

.breakout-detail-line:last-child {
  border-bottom: 0;
}

.breakout-detail-head > div,
.breakout-detail-line > div {
  padding: 0 18px;
  box-sizing: border-box;
}

.breakout-time {
  white-space: nowrap;
  font-weight: 400;
}

.breakout-session {
  word-break: keep-all;
}

.breakout-presenter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.breakout-detail .presenter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 130px;
  height: 28px;
  line-height: 28px;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.breakout-detail-line.detail-highlight {
  background: #eaf0f7;
}

/* Location Section */
.location-section {
  width: 100%;
  background: #FAFAFA;
  padding: 78px 0 88px;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

.location-row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 76px;
}

.location-row:last-child {
  margin-bottom: 0;
}

.location-map {
  position: relative;
  flex: 0 0 620px;
}

.location-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.location-info {
  flex: 1 1 auto;
  padding-top: 2px;
}

.location-info h2 {
  font-family: "Charlie Display";
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: #111;
  margin-bottom: 34px;
}

.location-info p {
  font-family: "Charlie Display";
  font-size: 22px;
  line-height: 1.45;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: #111;
  margin-bottom: 36px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  height: 40px;
  padding: 0 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: "Charlie Display";
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-2px);
  background: #1f1f1f;
}

/* Partner Logo Section */
.partner-section {
  width: 100%;
  background: #f1f4f8;
  padding: 42px 0 46px;
}

.partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-group {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 18px;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #c2c3c5;
  color: #fff;
  font-family: "Charlie Display";
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.partner-logo-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.partner-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.partner-atlassian {
  height: 32px;
}

.partner-aws {
  height: 28px;
}

.partner-ap {
  height: 25px;
}

.partner-lan {
  height: 26px;
}

.partner-open {
  height: 31px;
}

.partner-divider-small {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.28);
}

.partner-center-line {
  flex: 0 0 1px;
  width: 1px;
  height: 96px;
  background: #c8ced6;
  margin: 0 72px;
}

/* Footer */
.footer-section {
  width: 100%;
  background: #111;
  padding: 42px 0 44px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: "Charlie Display";
  font-size: 23px;
  line-height: 1;
  font-weight: 300;
  color: #747474;
  letter-spacing: -0.01em;
}

.footer-logo {
  width: auto;
  height: 34px;
  object-fit: contain;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .site-header-inner {
    max-width: 900px;
    padding: 0 28px;
  }

  .hero-inner {
    max-width: 900px;
    padding: 62px 28px 60px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .hero-visual {
    flex-basis: 270px;
  }

  .hero-object {
    width: 260px;
  }

  .intro-inner {
    max-width: 900px;
    gap: 60px;
    padding: 0 28px;
  }

  .intro-image-area {
    flex-basis: 260px;
  }

  .intro-badge {
    width: 250px;
  }

  .intro-text {
    font-size: 20px;
  }

  .agenda-inner {
    max-width: 900px;
    padding: 0 28px;
  }

  .agenda-table thead th,
  .agenda-table tbody td {
    padding-left: 34px;
    padding-right: 34px;
  }

  .agenda-table thead th:first-child,
  .agenda-table tbody td:first-child {
    width: 160px;
  }

  .agenda-day2 thead th:first-child,
  .agenda-day2 tbody td:first-child {
    width: 160px;
  }

  .agenda-day2 thead th:nth-child(3),
  .agenda-day2 tbody td:nth-child(3) {
    width: 220px;
  }

  .breakout-box {
    padding: 30px 28px 24px;
  }

  .breakout-box strong,
  .breakout-box span {
    font-size: 18px;
  }

  .breakout-detail {
    padding: 34px 34px 38px;
  }

  .breakout-detail-head,
  .breakout-detail-line {
    grid-template-columns: 160px minmax(0, 1fr) 220px;
  }

  .breakout-detail-line {
    font-size: 17px;
  }

  .breakout-detail .presenter-badge {
    min-width: 110px;
    font-size: 14px;
    padding: 0 14px;
  }

  .location-inner {
    max-width: 900px;
    padding: 0 28px;
  }

  .location-row {
    gap: 46px;
  }

  .location-map {
    flex-basis: 500px;
  }

  .location-info h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .location-info p {
    font-size: 18px;
  }

  .partner-inner {
    max-width: 900px;
    padding: 0 28px;
  }

  .partner-center-line {
    margin: 0 46px;
  }

  .partner-atlassian {
    height: 28px;
  }

  .partner-aws {
    height: 24px;
  }

  .partner-ap {
    height: 22px;
  }

  .partner-lan {
    height: 23px;
  }

  .partner-open {
    height: 27px;
  }

  .footer-inner {
    max-width: 900px;
    padding: 0 28px;
  }

  .footer-copy {
    font-size: 20px;
  }

  .footer-logo {
    height: 30px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .info-icon {
    display: inline-flex;
    width: 20px;
    flex: 0 0 16px;
    font-size: 10px;
    color: #1a1a1a;
  }

  .site-header {
    border-top-width: 6px;
  }

  .site-header-inner {
    height: 56px;
    padding: 0 20px;
  }

  .header-logo-area {
    gap: 10px;
  }

  .atlassian-logo {
    height: 20px;
  }

  .aws-logo {
    height: 17px;
  }

  .logo-divider {
    height: 16px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    padding: 50px 20px 48px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 40px;
    line-height: 1.08;
    margin-bottom: 26px;
  }

  .event-info-box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding: 16px 18px;
  }

  .event-info-box p {
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    line-height: 1.6;
  }

  .event-info-box p:last-child {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .event-info-box p:last-child .info-icon {
    margin-top: 4px;
  }

  .event-info-box p:last-child img {
    max-height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .hero-visual {
    width: 100%;
    display: none;
    flex: none;
    justify-content: flex-end;
  }

  .hero-object {
    width: 220px;
    margin-top: -10px;
  }

  .intro-section {
    padding: 54px 0 60px;
  }

  .intro-inner {
    flex-direction: column;
    gap: 34px;
    padding: 0 20px;
    text-align: left;
    align-items: flex-start;
  }

  .intro-image-area {
    width: 100%;
    flex: none;
    justify-content: center;
  }

  .intro-badge {
    width: 230px;
  }

  .intro-content {
    width: 100%;
  }

  .intro-text {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .intro-text br {
    display: none;
  }

  .photo-btn {
    width: 100%;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .agenda-section {
    padding: 58px 0 70px;
  }

  .agenda-inner {
    padding: 0 20px;
  }

  .agenda-block {
    margin-bottom: 58px;
  }

  .agenda-title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .agenda-title span img {
    width: 220px;
  }

  .agenda-table-wrap {
    width: 100%;
    overflow: visible;
  }

  .agenda-table {
    width: 100%;
    min-width: 0;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
  }

  .agenda-table thead {
    display: none;
  }

  .agenda-table tbody {
    display: block;
    width: 100%;
  }

  .agenda-table tbody tr {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    width: 100%;
    border-bottom: 1px solid #c7cbd1;
  }

  .agenda-table tbody td {
    display: flex;
    align-items: center;
    min-height: 48px;
    height: auto;
    font-size: 13px;
    line-height: 1.35;
    padding: 12px 14px;
    word-break: keep-all;
  }

  .agenda-table tbody td:first-child {
    width: auto;
    padding: 12px 8px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
  }

  .agenda-table tbody td:nth-child(2) {
    min-width: 0;
    padding: 12px 14px;
  }

  .agenda-icon {
    margin-right: 5px;
    font-size: 13px;
  }

  .agenda-day2 thead {
    display: none;
  }

  .agenda-day2 tbody tr {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .agenda-day2 tbody td {
    min-height: 50px;
    height: auto;
    font-size: 13px;
    line-height: 1.35;
    padding: 12px 14px;
  }

  .agenda-day2 tbody td:first-child {
    width: auto;
    padding: 12px 6px;
    font-size: 11.5px;
  }

  .agenda-day2 tbody td:nth-child(2) {
    width: auto;
  }

  .agenda-day2 tbody td:nth-child(3) {
    grid-column: 2 / 3;
    width: auto;
    min-height: auto;
    padding: 0 14px 12px;
  }

  .presenter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: 24px;
    line-height: 24px;
    margin: 2px 4px 2px 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .breakout-main-row {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  .breakout-main-row td:first-child {
    grid-column: 1 / 2;
    display: flex;
  }

  .breakout-main-row td:nth-child(2) {
    grid-column: 2 / 3;
  }

  .breakout-box-wrap {
    grid-template-columns: 1fr;
    border-radius: 0 14px 14px 0;
  }

  .breakout-box {
    min-height: auto;
    padding: 22px 18px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .breakout-box:last-child {
    border-bottom: 0;
  }

  .breakout-box::before {
    height: 8px;
  }

  .breakout-box strong,
  .breakout-box span {
    font-size: 15px;
    line-height: 1.25;
  }

  .agenda-table .breakout-detail-row {
    display: block !important;
  }

  .agenda-table .breakout-detail-row > td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
  }

  .breakout-detail {
    padding: 24px 16px 28px;
  }

  .breakout-detail-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .breakout-detail-head {
    display: none;
  }

  .breakout-detail-line {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: flex-start;
    min-height: auto;
    padding: 14px 0;
    font-size: 13px;
    border-bottom: 1px solid #d7dce3;
  }

  .breakout-detail-line > div {
    padding: 0;
  }

  .breakout-time {
    font-size: 11.5px;
    line-height: 1.35;
    padding-right: 8px !important;
  }

  .breakout-session {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
  }

  .breakout-presenter {
    grid-column: 2 / 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 8px !important;
  }

  .breakout-detail .presenter-badge {
    min-width: auto;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    font-size: 12px;
  }

  .breakout-detail-line.detail-highlight {
    padding: 14px 12px;
    margin: 6px 0;
    border-radius: 8px;
  }

  .location-section {
    padding: 58px 0 68px;
  }

  .location-inner {
    padding: 0 20px;
  }

  .location-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 62px;
  }

  .location-map {
    width: 100%;
    flex: none;
  }

  .location-info {
    width: 100%;
  }

  .location-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .location-info p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .location-btn {
    min-width: 160px;
    height: 38px;
    font-size: 14px;
  }

  .partner-section {
    padding: 42px 0 44px;
  }

  .partner-inner {
    flex-direction: column;
    gap: 34px;
    padding: 0 20px;
  }

  .partner-group {
    width: 100%;
  }

  .partner-center-line {
    width: 100%;
    height: 1px;
    flex: none;
    margin: 0;
  }

  .partner-logo-list {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .partner-label {
    margin-bottom: 14px;
  }

  .partner-atlassian {
    height: 25px;
  }

  .partner-aws {
    height: 22px;
  }

  .partner-ap {
    height: 21px;
  }

  .partner-lan {
    height: 22px;
  }

  .partner-open {
    height: 25px;
  }

  .footer-section {
    padding: 36px 0 38px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-copy {
    font-size: 17px;
  }

  .footer-logo {
    height: 27px;
  }
}

/* Small Mobile */
@media screen and (max-width: 420px) {
  .site-header {
    border-top-width: 5px;
  }

  .site-header-inner {
    height: 52px;
    padding: 0 18px;
  }

  .header-logo-area {
    gap: 9px;
  }

  .atlassian-logo {
    height: 18px;
  }

  .aws-logo {
    height: 16px;
  }

  .logo-divider {
    height: 15px;
  }

  .hero-inner {
    padding: 42px 18px 42px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .event-info-box {
    padding: 14px 15px;
  }

  .event-info-box p {
    font-size: 11.5px;
  }

  .event-info-box p:last-child img {
    max-height: 21px;
  }

  .event-info-box p:last-child {
    gap: 7px 10px;
  }

  .hero-object {
    width: 190px;
  }

  .intro-section {
    padding: 46px 0 52px;
  }

  .intro-inner {
    padding: 0 18px;
    gap: 30px;
  }

  .intro-badge {
    width: 205px;
  }

  .intro-text {
    font-size: 16px;
  }

  .photo-btn {
    font-size: 14px;
  }

  .agenda-section {
    padding: 50px 0 60px;
  }

  .agenda-inner {
    padding: 0 18px;
  }

  .agenda-title {
    font-size: 15px;
  }

  .agenda-title span img {
    width: 190px;
  }

  .agenda-table tbody tr {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .agenda-table tbody td {
    font-size: 12px;
    padding: 11px 12px;
  }

  .agenda-table tbody td:first-child {
    font-size: 11px;
    padding: 11px 6px;
  }

  .agenda-table tbody td:nth-child(2) {
    padding: 11px 12px;
  }

  .agenda-day2 tbody tr {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .breakout-main-row {
    grid-template-columns: 82px minmax(0, 1fr) !important;
  }

  .breakout-box {
    padding: 20px 15px 16px;
  }

  .breakout-box strong,
  .breakout-box span {
    font-size: 14px;
  }

  .breakout-detail {
    padding: 22px 14px 26px;
  }

  .breakout-detail-line {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .breakout-time {
    font-size: 11px;
  }

  .breakout-session {
    font-size: 12.5px;
  }

  .breakout-detail .presenter-badge {
    font-size: 11.5px;
    height: 23px;
    line-height: 23px;
    padding: 0 10px;
  }

  .location-section {
    padding: 50px 0 58px;
  }

  .location-inner {
    padding: 0 18px;
  }

  .location-row {
    gap: 26px;
    margin-bottom: 54px;
  }

  .location-info h2 {
    font-size: 25px;
  }

  .location-info p {
    font-size: 15.5px;
  }

  .location-btn {
    width: 100%;
  }

  .partner-section {
    padding: 36px 0 40px;
  }

  .partner-inner {
    padding: 0 18px;
    gap: 30px;
  }

  .partner-logo-list {
    gap: 14px 16px;
  }

  .partner-atlassian {
    height: 22px;
  }

  .partner-aws {
    height: 20px;
  }

  .partner-ap {
    height: 19px;
  }

  .partner-lan {
    height: 20px;
  }

  .partner-open {
    height: 23px;
  }

  .partner-divider-small {
    height: 22px;
  }

  .footer-section {
    padding: 32px 0 34px;
  }

  .footer-inner {
    padding: 0 18px;
    gap: 20px;
  }

  .footer-copy {
    font-size: 15px;
  }

  .footer-logo {
    height: 24px;
  }


  #pt-30 {    padding-bottom: 20px;}

}