.container {
  display: grid;
  width: 50%;
  height: 100%;
  grid-template-areas: "header header header"
  "left right right"
  "footer footer footer";
  grid-template-columns: 200px 4fr 1fr;
  grid-template-rows: 200px 1fr 40px;
margin-right: auto;
	margin-left: auto;
}
.container > div {
  border: 0px dashed #888;
}

.header {
  grid-area: header;
}
.left {
	grid-area: left;
	padding-left : 20px;
	padding-right : 20px;
	padding-top : 20px;
	padding-bottom : 20px;
	background-color : #fff;
}
.right {
	grid-area: right;
	padding-left : 20px;
	padding-right : 20px;
	padding-top : 20px;
	padding-bottom : 20px;
overflow: auto;
	background-color : #fff;
}
.footer {
  grid-area: footer;
padding-left : 20px;
padding-right : 20px;
padding-top : 20px;
padding-bottom : 20px;
}

body {
	text-align:justify;
	background-image: url("background.jpg");
	background-attachment: fixed;
	}

body {
    font-family: "Ibarra Real Nova", serif;
}
blockquote {
	font-size : 19px;
	font-family: "Ibarra Real Nova", serif;
	font-weight : 500 !important ;
	}

b {
	color : #002238;
	font-size : 20px;
	font-weight : 500 !important ;
	font-family: "Ibarra Real Nova", serif;
	}

i {
	color : #002238;
	font-size : 20px;
	font-weight : 400 !important ;
	font-family: "Ibarra Real Nova", serif;
	}

h1{
	font-family: "Josefin Sans", sans-serif;
	color : #181818;
	font-size : 24px;
	letter-spacing: 1px; 
	font-weight: bold;
	font-style: none;
	line-height: 11px;
	text-align: right;
	text-transform: uppercase;
	width: 98%;
	padding-right: 10px;
	padding: 5px;
	border-bottom: 1px dashed #181818;
	margin-bottom: 2px;
	margin-top: -1px;
	}

p {
	font-family: "Ibarra Real Nova", serif;  
	font-weight : 500 !important ;
	text-align: justify;
	font-size : 20px;
	background: transparent;
	width: 100%;
	}
.owned-meta,
.owned-meta * {
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.45;
}


a {
	text-decoration:none;
	color: #9F9F9F;
	font-family: "Ibarra Real Nova", serif;
	font-weight : 700;
	font-size : 17px;
	cursor: crosshair;
	}

a:hover {
	text-decoration:none;
	color: #002238;
	font-family: "Ibarra Real Nova", serif;
	font-weight : 700;
	font-size : 17px;
	cursor: crosshair;
	}

/* Category header card */
h2 {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 700;
  font-size: 28px;
  margin: 50px 0 20px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: inline-block;
}
/* ==========================================================
   JOINED PAGE — ISOLATED STYLING
   (Safe: affects ONLY the Joined page)
   ========================================================== */

#joined-page {
    font-family: "Ibarra Real Nova", serif;
}



/* ----------------------------------------------------------
   Category Badge — Foil Effect
   ---------------------------------------------------------- */

/* Glow animation */
@keyframes catGlow {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}


/* --- OWNED LISTINGS --- */
.owned-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px 0;
}

/* Thumbnail */
.owned-thumb img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}

.owned-thumb img:hover {
  transform: scale(1.12);
}

/* Title text */
.owned-title {
  font-size: 18px;
  font-weight: 600;
}

