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

body {
  font-family: Arial, sans-serif;
  margin: 20px auto;
  padding: 0 15px;
  max-width: 1600px;
  background: white;
}
.masthead-inner {
	    display: flex;
	    align-items: center;
	    gap: 1.5rem;
	    max-width: 1200px;
	    margin: 0 auto;
}

/* Masthead */
.masthead {
/*    background: #0a0a0a; */
    background: #FFFFFF; */
    /*background: white;
     Specifies the font color as a hex HTML color code */
/*    color: white; */
    color: #477788;                                   /* Specifies the font color as a hex HTML color code */
    padding: 1rem;
    text-align: center;
}


/* Pin the nav to the absolute bottom of <header> */
header nav {
/*  position: absolute; */
  width: 100%;
  background-color: white; /* Semi-transparent background */
  color: #477788;
}

header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 0;
}

header nav a {
  display: block;
  padding: 0px 0px;
  color: #477788;
  text-decoration: none;
}

/* Main Grid Container */
.leadspace {
    padding: 2rem 1rem;
    background: #f4f4f4;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* All columns */
.col {
    flex: 1 1 100%;           /* Default: full width (mobile) */
    min-width: 280px;         /* Minimum column width */
}

/* Desktop Layout (3 columns) */
@media (min-width: 1056px) {   /* Same breakpoint style as IBM Carbon */
    .content-col { flex: 2; }   /* ~40-50% */
    .media-col   { flex: 3; }   /* Largest column */
    .aside-col   { flex: 1; }   /* Narrow sidebar */
}
/*
@media (min-width: 1056px)    /* Same breakpoint style as IBM Carbon */
{
	img {  width: 50%;}
}
*/

/* Optional: Extra styling for demonstration */
.placeholder-media {
    background: #333;
    color: white; 
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 8px;
}

button {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  margin: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100px;
}
button:hover {
  background-color: #0052a3;
}

/* Visual feedback */
.col {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
h1 {
	color: #477788;                                   /* Specifies the font color as a hex HTML color code */
}
h2 {
	color: #477788;                                   /* Specifies the font color as a hex HTML color code */
}
h3 {
	color: #477788;                                   /* Specifies the font color as a hex HTML color code */
}

#copyright::after {
	content: "© 2026 Ideation Publishing. All rights reserved.";
	font-size: 14px;
	color: #477788;
	font-weight: 500;
}

.left-image {
	float: left;
	margin: 0 15px 15px 0 ;
}
.right-image {
	float: right;
	margin: 0 15px 15px 0 ;
}

.image-container {
      margin: 0 20px 15px 0; /* spacing around the image */
      float: left;           /* or 'right' */
    }

.image-container img {
      height: auto;
      display: block;
    }

    /* Optional: Clear the float after the content */
.clearfix::after {
      content: "";
      display: table;
      clear: both;
    }

#press-release {
	padding: 20px;
}
#interview-questions {
	padding: 20px;
}

ul {
	padding: 5px 5px 5px 5px;
}
ol {
	padding: 5px 5px 5px 5px;
}
li {
	padding: 5px 5px 5px 5px;
}

